Exports various resurrection-related functions to ZScript.

This commit is contained in:
Mari the Deer 2018-09-18 01:14:39 +02:00 committed by Rachael Alexanderson
commit c3894ee348
4 changed files with 41 additions and 1 deletions

View file

@ -2971,6 +2971,12 @@ DEFINE_ACTION_FUNCTION(AActor, A_ExtChase)
return 0;
}
DEFINE_ACTION_FUNCTION(AActor, A_CheckForResurrection)
{
PARAM_SELF_PROLOGUE(AActor);
ACTION_RETURN_BOOL(P_CheckForResurrection(self, false));
}
// for internal use
void A_Chase(AActor *self)
{