From 27c9fe5047ff44357f62375d029cd8c58fcac26d Mon Sep 17 00:00:00 2001 From: lachwright Date: Thu, 3 Oct 2019 02:31:32 +0800 Subject: [PATCH] Fix false comment --- src/p_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_map.c b/src/p_map.c index 56412a3b4..fdb0128ac 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -962,7 +962,7 @@ static boolean PIT_CheckThing(mobj_t *thing) { 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)) && (P_AproxDistance(thing->x - tmthing->x, thing->y - tmthing->y) < (thing->radius)) && (P_MobjFlip(tmthing)*tmthing->momz <= 0)