From f7e9ae4bf1827938bd65215c70c1296f620b0bd3 Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Thu, 24 Jul 2025 20:38:51 -0400 Subject: [PATCH] Non-thunderdome value fixed Non-thunderdome value fixed (125% to 150% again); should now overall give +25% of the original values instead of nearly nothing extra --- 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 ecd1b7c6d..cff7165b7 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -13911,9 +13911,9 @@ void K_MoveKartPlayer(player_t *player, boolean onground) { player->lastringboost = player->ringboost; UINT32 award = 5*player->ringboxaward + 10; - award = 5 * award / 4; // 125% Payout Increase (as of 7/23/25) + award = 5 * award / 4; // 125% Payout Increase if (!K_ThunderDome()) - award = 5 * award / 4; + award = 3 * award / 2; if (modeattacking & ATTACKING_SPB) {