From 581542c1c098930469cc55dcbccfc1cc833a9783 Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Fri, 11 Aug 2023 04:34:23 -0400 Subject: [PATCH] Nerf ringboost slightly middleground between master and old value --- src/k_kart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_kart.c b/src/k_kart.c index fdbc11cee..45a1304e9 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -3288,7 +3288,7 @@ static void K_GetKartBoostPower(player_t *player) { // This one's a little special: we add extra top speed per tic of ringboost stored up, to allow for Ring Box to really rocket away. // (We compensate when decrementing ringboost to avoid runaway exponential scaling hell.) - ADDBOOST(FRACUNIT/4 + (FRACUNIT / 1500 * (player->ringboost)), 4*FRACUNIT, 0); // + 20% top speed, + 400% acceleration, +0% handling + ADDBOOST(FRACUNIT/4 + (FRACUNIT / 1750 * (player->ringboost)), 4*FRACUNIT, 0); // + 20% top speed, + 400% acceleration, +0% handling } if (player->eggmanexplode) // Ready-to-explode