mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-20 22:38:08 +00:00
format codebase
This commit is contained in:
@@ -1,24 +1,21 @@
|
||||
#include "MonCoreSmashableDoors.h"
|
||||
#include "EntityManager.h"
|
||||
|
||||
void MonCoreSmashableDoors::OnDie(Entity* self, Entity* killer)
|
||||
{
|
||||
auto myNum = self->GetVarAsString(u"spawner_name");
|
||||
void MonCoreSmashableDoors::OnDie(Entity* self, Entity* killer) {
|
||||
auto myNum = self->GetVarAsString(u"spawner_name");
|
||||
|
||||
myNum = myNum.substr(myNum.length() - 1, 1);
|
||||
|
||||
auto triggerGroup = "CoreNookTrig0" + myNum;
|
||||
|
||||
auto triggerGroup = "CoreNookTrig0" + myNum;
|
||||
|
||||
// Get the trigger
|
||||
auto triggers = EntityManager::Instance()->GetEntitiesInGroup(triggerGroup);
|
||||
|
||||
if (triggers.empty())
|
||||
{
|
||||
if (triggers.empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
for (auto trigger : triggers)
|
||||
{
|
||||
for (auto trigger : triggers) {
|
||||
trigger->OnFireEventServerSide(self, "DoorSmashed");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user