From b97a94a2a9605793334c6b6992f898d92b183e48 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Wed, 24 Jan 2024 05:37:37 -0700 Subject: [PATCH] Bumper inflate: remove debug print --- 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 076687fb0..4d0aea282 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -4177,9 +4177,9 @@ static void P_BouncePlayerMove(mobj_t *mo, TryMoveResult_t *result) P_PlayerHitBounceLine(bestslideline, &result->normal); mo->eflags |= MFE_JUSTBOUNCEDWALL; + // Combo avoidance! if (mo->player && P_PlayerInPain(mo->player) && gametyperules & GTR_BUMPERS && mo->health > 1) { - CONS_Printf("get me outta here\n"); P_DamageMobj(mo, NULL, NULL, 1, DMG_STUMBLE); }