mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-06-04 19:10:59 +00:00
- scriptified A_FreezeDeath(Chunks).
This commit is contained in:
parent
6dc1bb8475
commit
e16713492f
5 changed files with 132 additions and 143 deletions
|
@ -1311,6 +1311,13 @@ void AActor::ObtainInventory (AActor *other)
|
|||
}
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION(AActor, ObtainInventory)
|
||||
{
|
||||
PARAM_SELF_PROLOGUE(AActor);
|
||||
PARAM_OBJECT(other, AActor);
|
||||
self->ObtainInventory(other);
|
||||
return 0;
|
||||
}
|
||||
//============================================================================
|
||||
//
|
||||
// AActor :: CheckLocalView
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue