From f134c07c0024717908c965729f071b85d35152d9 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Fri, 12 Feb 2021 03:20:43 -0500 Subject: [PATCH] Severely decrease spindash threshold --- src/k_bot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_bot.c b/src/k_bot.c index 0d687d8cd..ee9ab2cb6 100644 --- a/src/k_bot.c +++ b/src/k_bot.c @@ -750,7 +750,7 @@ static UINT8 K_TrySpindash(player_t *player) return 0; } - if (player->speed < K_GetKartSpeed(player, false) / 4 // Below the speed threshold + if (player->speed < 10*mapobjectscale // Below the speed threshold && player->kartstuff[k_speedboost] < (FRACUNIT/8)) // If you have other boosts, you can probably trust it. { INT32 chargingPoint = (K_GetSpindashChargeTime(player) + difficultyModifier);