mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-26 04:30:55 +00:00
Fix P_InJumpFlipSector checking for outdated FOF flags
This commit is contained in:
parent
f37d466343
commit
bf466bfbd9
1 changed files with 1 additions and 1 deletions
|
@ -2498,7 +2498,7 @@ boolean P_InJumpFlipSector(mobj_t *mo) // Returns true if you are in a jumpflip
|
|||
|
||||
for (rover = sector->ffloors; rover; rover = rover->next)
|
||||
{
|
||||
if (!(rover->flags & FF_EXISTS))
|
||||
if (!(rover->fofflags & FOF_EXISTS))
|
||||
continue;
|
||||
|
||||
if (!(rover->master->frontsector->specialflags & SSF_JUMPFLIP))
|
||||
|
|
Loading…
Reference in a new issue