mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-12 19:28:21 +00:00
10 lines
235 B
C++
10 lines
235 B
C++
|
#include "NjhubLavaPlayerDeathTrigger.h"
|
||
|
|
||
|
void NjhubLavaPlayerDeathTrigger::OnCollisionPhantom(Entity *self, Entity *target)
|
||
|
{
|
||
|
if (!target->IsPlayer())
|
||
|
return;
|
||
|
|
||
|
target->Smash(self->GetObjectID(), VIOLENT, u"drown");
|
||
|
}
|