From dca887e23e519aec983cbd0bcb63164f084893b9 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Sun, 28 Nov 2021 14:36:58 -0500 Subject: [PATCH] Do not adjust friction on bots for tire grease --- 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 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;