- scriptified a_hereticmisc.cpp.

This commit is contained in:
Christoph Oelckers 2016-11-18 21:34:06 +01:00
commit aa32d8970b
5 changed files with 163 additions and 200 deletions

View file

@ -6022,6 +6022,13 @@ bool P_CheckMissileSpawn (AActor* th, double maxdist)
return true;
}
DEFINE_ACTION_FUNCTION(AActor, CheckMissileSpawn)
{
PARAM_SELF_PROLOGUE(AActor);
PARAM_FLOAT(add);
ACTION_RETURN_BOOL(P_CheckMissileSpawn(self, add));
}
//---------------------------------------------------------------------------
//