Fixed a typo

This commit is contained in:
MascaraSnake 2019-10-05 10:45:24 +02:00
parent cabc4e0294
commit 99220ae48b
1 changed files with 1 additions and 1 deletions

View File

@ -3366,7 +3366,7 @@ void P_MobjCheckWater(mobj_t *mobj)
|| (!(mobj->eflags & MFE_VERTICALFLIP) && mobj->z + (height>>1) < topheight))
mobj->eflags |= MFE_UNDERWATER;
if (mobj->eflags & (MFE_TOUCHWATER|MFE_TOUCHLAVA))
if (mobj->eflags & (MFE_TOUCHWATER|MFE_UNDERWATER))
{
if (GETSECSPECIAL(rover->master->frontsector->special, 1) == 3)
mobj->eflags |= MFE_TOUCHLAVA;