From 4a68f98dc2fa027e36fca5fc2c144a470f025c4a Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Fri, 8 Mar 2019 20:33:44 -0500 Subject: [PATCH] double ring hitbox, buff ring boost to 20% top speed increase --- src/info.c | 2 +- src/k_kart.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/info.c b/src/info.c index 180ad8541..9fec49b81 100644 --- a/src/info.c +++ b/src/info.c @@ -5451,7 +5451,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] = S_NULL, // xdeathstate sfx_itemup, // deathsound 38*FRACUNIT, // speed - 24*FRACUNIT, // radius + 48*FRACUNIT, // radius 48*FRACUNIT, // height 0, // display offset 100, // mass diff --git a/src/k_kart.c b/src/k_kart.c index 185d26b8b..935b0bd9a 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -1964,7 +1964,7 @@ static void K_GetKartBoostPower(player_t *player) if (player->kartstuff[k_invincibilitytimer]) // Invincibility { - speedboost = max(speedboost, 3*FRACUNIT/8); // + 37.5% + speedboost = max(speedboost, (3*FRACUNIT)/8); // + 37.5% accelboost = max(accelboost, 3*FRACUNIT); // + 300% } @@ -1975,7 +1975,7 @@ static void K_GetKartBoostPower(player_t *player) if (player->kartstuff[k_ringboost]) // Ring Boost { - speedboost = max(speedboost, FRACUNIT/8); // + 12.5% + speedboost = max(speedboost, FRACUNIT/5); // + 20% accelboost = max(accelboost, 2*FRACUNIT); // + 200% }