From fb7271bc926e8d262df3652456a04bbfb1e7620c Mon Sep 17 00:00:00 2001 From: yamamama Date: Fri, 24 Apr 2026 05:00:30 -0400 Subject: [PATCH] Comment this out This messes with softcode tumblegems --- 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 6e10679c2..287e72914 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -1347,12 +1347,12 @@ static BlockItReturn_t PIT_CheckThing(mobj_t *thing) } // thanks to sal for solidenemies dot lua - if (thing->flags & (MF_ENEMY|MF_BOSS) && g_tm.thing->flags & (MF_ENEMY|MF_BOSS)) + /*if (thing->flags & (MF_ENEMY|MF_BOSS) && g_tm.thing->flags & (MF_ENEMY|MF_BOSS)) { if ((thing->z + thing->height >= g_tm.thing->z) && (g_tm.thing->z + g_tm.thing->height >= thing->z)) return BMIT_ABORT; - } + }*/ // Damage other players when possible. // Handle before bumpcode to prevent lower weights from getting affected.