diff --git a/src/k_bot.c b/src/k_bot.c index 37d5c825b..9c633f422 100644 --- a/src/k_bot.c +++ b/src/k_bot.c @@ -654,6 +654,12 @@ fixed_t K_BotFrictionRubberband(player_t *player, fixed_t frict) return frict; } + if (player->tiregrease > 0) + { + // Bots will lose all of their momentum without this. + return frict; + } + newFrict = frict - FixedMul(value, rubberband); if (newFrict < 0)