mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
27 lines
573 B
C++
27 lines
573 B
C++
|
#include "MonCoreSmashableDoors.h"
|
||
|
#include "GameMessages.h"
|
||
|
#include "EntityManager.h"
|
||
|
#include "dZoneManager.h"
|
||
|
|
||
|
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;
|
||
|
|
||
|
// Get the trigger
|
||
|
auto triggers = EntityManager::Instance()->GetEntitiesInGroup(triggerGroup);
|
||
|
|
||
|
if (triggers.empty())
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
for (auto trigger : triggers)
|
||
|
{
|
||
|
trigger->OnFireEventServerSide(self, "DoorSmashed");
|
||
|
}
|
||
|
}
|