mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed: The state parameter for CallStateChain was checked for the wrong type.
This commit is contained in:
parent
e993f9304b
commit
7adc34932f
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ DEFINE_ACTION_FUNCTION(ACustomInventory, CallStateChain)
|
|||
{
|
||||
PARAM_SELF_PROLOGUE(AStateProvider);
|
||||
PARAM_OBJECT(affectee, AActor);
|
||||
PARAM_STATE(state);
|
||||
PARAM_POINTER(state, FState);
|
||||
ACTION_RETURN_BOOL(self->CallStateChain(affectee, state));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue