mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- Fixed type in A_Respawn.
SVN r3762 (trunk)
This commit is contained in:
parent
86a7a3249f
commit
6f93b88245
1 changed files with 1 additions and 1 deletions
|
@ -2704,7 +2704,7 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_Respawn)
|
|||
}
|
||||
else
|
||||
{
|
||||
oktorespawn = P_CheckPosition(self, self->x, self->z, true);
|
||||
oktorespawn = P_CheckPosition(self, self->x, self->y, true);
|
||||
}
|
||||
|
||||
if (oktorespawn)
|
||||
|
|
Loading…
Reference in a new issue