From 3d5f0e9d73dafb6d1a0a094908f1b8823bc8ec83 Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Mon, 22 Sep 2025 08:23:22 -0400 Subject: [PATCH] Fix Ring payout rate getting stuck fast until interacting with aother Ring Box --- src/k_kart.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/k_kart.c b/src/k_kart.c index 577ba4d5e..08cc899ce 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -10474,6 +10474,11 @@ void K_KartPlayerThink(player_t *player, ticcmd_t *cmd) // CONS_Printf("%d - %d\n", player->ringboost, oldringboost - player->ringboost); } + if (!G_CompatLevel(0x0010) && player->superring == 0 && player->ringboxdelay == 0 && player->ringboost < player->lastringboost) + { + player->lastringboost = player->ringboost; + } + if (player->sneakertimer) { player->sneakertimer--;