mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 15:02:39 +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)
|
DEFINE_ACTION_FUNCTION(AActor, CountsAsKill)
|
||||||
{
|
{
|
||||||
PARAM_SELF_PROLOGUE(AActor);
|
PARAM_SELF_PROLOGUE(AActor);
|
||||||
ACTION_RETURN_FLOAT(self->CountsAsKill());
|
ACTION_RETURN_BOOL(self->CountsAsKill());
|
||||||
}
|
}
|
||||||
|
|
||||||
DEFINE_ACTION_FUNCTION(AActor, IsZeroDamage)
|
DEFINE_ACTION_FUNCTION(AActor, IsZeroDamage)
|
||||||
|
|
Loading…
Reference in a new issue