From 78f8c53353d896419836eec88b23d1f26d2be916 Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Thu, 19 Jun 2025 02:49:21 -0400 Subject: [PATCH] Adjusted Ring Duration Made ring duration half as effective up the graph (top end should be unaffected), raised minimum duration 3->7 --- src/k_kart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/k_kart.c b/src/k_kart.c index bec04750d..ebbe542e2 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -11332,7 +11332,7 @@ static void K_UpdatePlayerWaypoints(player_t *const player) INT32 K_GetKartRingPower(const player_t *player, boolean boosted) { - fixed_t ringPower = ((9 - player->kartspeed) + (9 - player->kartweight)) * (FRACUNIT/2); + fixed_t ringPower = ((9 - player->kartspeed) + (9 - player->kartweight)) * (FRACUNIT/4); if (boosted == true) { @@ -11344,7 +11344,7 @@ INT32 K_GetKartRingPower(const player_t *player, boolean boosted) INT32 K_GetFullKartRingPower(const player_t *player, boolean boosted) { - return 3 + K_GetKartRingPower(player, boosted); + return 7 + K_GetKartRingPower(player, boosted); } // Returns false if this player being placed here causes them to collide with any other player