From 6cb1683e20a2dfeaca5d2b8cf8739a5e8c7750ec Mon Sep 17 00:00:00 2001 From: Ashnal Date: Sun, 14 Sep 2025 12:14:02 -0400 Subject: [PATCH] oops, conditionals again --- src/p_map.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_map.c b/src/p_map.c index 9ab2f9db6..f486def99 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -651,10 +651,10 @@ static BlockItReturn_t PIT_CheckThing(mobj_t *thing) return BMIT_CONTINUE; // force no collide } - if (!(g_tm.thing->player && g_tm.thing->player->markedfordeath && (K_IsMissileOrKartItem(thing) || thing->type == MT_INSTAWHIP || thing->type == MT_PLAYER))) + if (g_tm.thing->player && g_tm.thing->player->markedfordeath && !(K_IsMissileOrKartItem(thing) || thing->type == MT_INSTAWHIP || thing->type == MT_PLAYER)) return BMIT_CONTINUE; - if (!(thing->player && thing->player->markedfordeath && (K_IsMissileOrKartItem(g_tm.thing) || g_tm.thing->type == MT_INSTAWHIP || g_tm.thing->type == MT_PLAYER))) + if (thing->player && thing->player->markedfordeath && !(K_IsMissileOrKartItem(g_tm.thing) || g_tm.thing->type == MT_INSTAWHIP || g_tm.thing->type == MT_PLAYER)) return BMIT_CONTINUE; // Blend-Eye internal noclip