mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
- fixed return type of CountsAsKill.
This commit is contained in:
parent
28af2fe66b
commit
b81a23c5e5
1 changed files with 1 additions and 1 deletions
|
@ -8328,7 +8328,7 @@ DEFINE_ACTION_FUNCTION(AActor, AccuracyFactor)
|
|||
DEFINE_ACTION_FUNCTION(AActor, CountsAsKill)
|
||||
{
|
||||
PARAM_SELF_PROLOGUE(AActor);
|
||||
ACTION_RETURN_FLOAT(self->CountsAsKill());
|
||||
ACTION_RETURN_BOOL(self->CountsAsKill());
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION(AActor, IsZeroDamage)
|
||||
|
|
Loading…
Reference in a new issue