- scriptified ArtiBlastRadius.

This commit is contained in:
Christoph Oelckers 2016-11-26 09:51:14 +01:00
commit 4e802652c7
12 changed files with 273 additions and 175 deletions

View file

@ -262,7 +262,15 @@ void P_NoiseAlert (AActor *target, AActor *emitter, bool splash, double maxdist)
}
}
DEFINE_ACTION_FUNCTION(AActor, NoiseAlert)
{
PARAM_SELF_PROLOGUE(AActor);
PARAM_OBJECT(emitter, AActor);
PARAM_BOOL_DEF(splash);
PARAM_FLOAT_DEF(maxdist);
P_NoiseAlert(self, emitter, splash, maxdist);
return 0;
}
//----------------------------------------------------------------------------