From 9504b6011e4c01ef93637a6ef266aeb0dbd83298 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Sat, 24 Apr 2021 00:16:57 -0400 Subject: [PATCH] Make it linear instead of exponential --- 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 57eb7c40e..c78d094e7 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -507,7 +507,7 @@ fixed_t K_ItemOddsScale(UINT8 numPlayers, boolean spbrush) { // Less than basePlayer: increase odds significantly. // 2P: x2.5 - playerScaling = ((basePlayer - playerCount) * (basePlayer - playerCount)) * (FRACUNIT / 14); + playerScaling = (basePlayer - playerCount) * (FRACUNIT / 4); } else if (playerCount > basePlayer) {