- fixed: The state parameter for CallStateChain was checked for the wrong type.

This commit is contained in:
Christoph Oelckers 2017-01-20 19:55:57 +01:00
parent e993f9304b
commit 7adc34932f
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ DEFINE_ACTION_FUNCTION(ACustomInventory, CallStateChain)
{ {
PARAM_SELF_PROLOGUE(AStateProvider); PARAM_SELF_PROLOGUE(AStateProvider);
PARAM_OBJECT(affectee, AActor); PARAM_OBJECT(affectee, AActor);
PARAM_STATE(state); PARAM_POINTER(state, FState);
ACTION_RETURN_BOOL(self->CallStateChain(affectee, state)); ACTION_RETURN_BOOL(self->CallStateChain(affectee, state));
} }