Skip to content

Commit

Permalink
- fixed return value of Actor.isFrozen()
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Jan 13, 2019
1 parent acb71de commit b07ff3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripting/vmthunks_actors.cpp
Expand Up @@ -1688,7 +1688,7 @@ static int isFrozen(AActor *self)
DEFINE_ACTION_FUNCTION_NATIVE(AActor, isFrozen, isFrozen)
{
PARAM_SELF_PROLOGUE(AActor);
return isFrozen(self);
ACTION_RETURN_BOOL(isFrozen(self));
}


Expand Down

0 comments on commit b07ff3f

Please sign in to comment.