mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
9 lines
282 B
C++
9 lines
282 B
C++
|
#include "AgShipPlayerDeathTrigger.h"
|
||
|
#include "Entity.h"
|
||
|
|
||
|
void AgShipPlayerDeathTrigger::OnCollisionPhantom(Entity* self, Entity* target) {
|
||
|
if (target->GetLOT() == 1 && !target->GetIsDead()) {
|
||
|
target->Smash(self->GetObjectID(), eKillType::VIOLENT, u"electro-shock-death");
|
||
|
}
|
||
|
}
|