From 8f4e8a4953c7468a6b1ba6ed9dec823feebb64ad Mon Sep 17 00:00:00 2001 From: toaster Date: Wed, 9 Feb 2022 23:43:06 +0000 Subject: [PATCH] can't believe i messed up the brackets this bad, woops --- src/p_inter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_inter.c b/src/p_inter.c index cada5b83e..50614e610 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -1932,10 +1932,10 @@ boolean P_DamageMobj(mobj_t *target, mobj_t *inflictor, mobj_t *source, INT32 da boolean allowcombo = (hardhit == !(damagetype & DMG_WOMBO)); // Tumble is a special case. - if ((type == DMG_TUMBLE) + if (type == DMG_TUMBLE) { // don't allow constant combo - if (player->tumbleBounces == 1 && (P_MobjFlip(target)*target->momz > 0) + if (player->tumbleBounces == 1 && (P_MobjFlip(target)*target->momz > 0)) allowcombo = false; }