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