mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 05:57:20 +00:00
37de00464e
Removing extraneous includes from scripts that start with the letter M-Z
11 lines
255 B
C++
11 lines
255 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");
|
|
}
|