mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-20 09:11:01 +00:00
Replace tmthing in P_BlockThingsIterator with thing
This commit is contained in:
parent
2b8190bb0c
commit
14d5e3f75d
1 changed files with 1 additions and 1 deletions
|
@ -1069,7 +1069,7 @@ boolean P_BlockThingsIterator(INT32 x, INT32 y, boolean (*func)(mobj_t *), mobj_
|
|||
if (!func(block->mobj))
|
||||
return false;
|
||||
|
||||
if (checkthing && P_MobjWasRemoved(tmthing)) // func just popped our tmthing, cannot continue.
|
||||
if (checkthing && P_MobjWasRemoved(thing)) // func just popped our tmthing, cannot continue.
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue