diff --git a/src/k_bot.c b/src/k_bot.c index 29aa4f177..96c488e0f 100644 --- a/src/k_bot.c +++ b/src/k_bot.c @@ -482,7 +482,7 @@ fixed_t K_BotFrictionRubberband(player_t *player, fixed_t frict) fixed_t rubberband = K_BotRubberband(player) - FRACUNIT; fixed_t origFrict, newFrict; - if (rubberband <= 0) + if (rubberband <= 0 || player->tiregrease > 0) { // Never get weaker than normal friction return frict;