From 8cfe55a64dc32aca64f28f8f62fa65aa77e9a601 Mon Sep 17 00:00:00 2001 From: yamamama Date: Mon, 22 Dec 2025 16:56:34 -0500 Subject: [PATCH] Revert the stupid Bubble Shield bump nerf --- src/k_kart.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/k_kart.c b/src/k_kart.c index d1c3871d4..29a943a26 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -518,17 +518,7 @@ static fixed_t K_PlayerWeight(mobj_t* mobj, mobj_t* against) else if ((K_GetShieldFromPlayer(against->player) == KSHIELD_BUBBLE // They have a Bubble Shield && K_GetShieldFromPlayer(mobj->player) != KSHIELD_BUBBLE)) // and you don't { - // Check if the player is defending. - if (K_IsBubbleDefending(against->player)) - { - // If they are, don't register a bump. - // TODO: Make this scale to speed(?) - return 0; - } - else - { - bubbleMultiplier = (FRACUNIT / 4); // 25% bump severity for uninflated Bubble Shields. - } + return 0; // This player does not cause any bump action } else if (invinisalt && against->player->invincibilitytimer) {