Fix false comment

This commit is contained in:
lachwright 2019-10-03 02:31:32 +08:00
parent b38bd1a078
commit d9f4772fbc

View file

@ -962,7 +962,7 @@ static boolean PIT_CheckThing(mobj_t *thing)
{ {
return true; return true;
} }
if ((thing->flags & MF_PUSHABLE) // carrying a player if ((thing->flags & MF_PUSHABLE) // not carrying a player
&& ((tmthing->eflags & MFE_VERTICALFLIP) == (thing->eflags & MFE_VERTICALFLIP)) && ((tmthing->eflags & MFE_VERTICALFLIP) == (thing->eflags & MFE_VERTICALFLIP))
&& (P_AproxDistance(thing->x - tmthing->x, thing->y - tmthing->y) < (thing->radius)) && (P_AproxDistance(thing->x - tmthing->x, thing->y - tmthing->y) < (thing->radius))
&& (P_MobjFlip(tmthing)*tmthing->momz <= 0) && (P_MobjFlip(tmthing)*tmthing->momz <= 0)