mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Fix typo in P_MobjTouchingSectorSpecial
This commit is contained in:
parent
2c0fb5e80f
commit
417809f78e
1 changed files with 1 additions and 1 deletions
|
@ -4052,7 +4052,7 @@ sector_t *P_MobjTouchingSectorSpecial(mobj_t *mo, INT32 section, INT32 number)
|
|||
if (!(node->m_sector->flags & SF_TRIGGERSPECIAL_TOUCH))
|
||||
continue;
|
||||
|
||||
if (GETSECSPECIAL(mo->subsector->sector->special, section) == number)
|
||||
if (GETSECSPECIAL(node->m_sector->special, section) == number)
|
||||
return node->m_sector;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue