From 082d253553fdd0b6670d12455f40a747b83371e1 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Mon, 16 Nov 2020 17:00:21 -0500 Subject: [PATCH] Remove bot friction Not convinced this fixes anything anymore --- src/k_bot.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/k_bot.c b/src/k_bot.c index a32a554e1..899a70eb1 100644 --- a/src/k_bot.c +++ b/src/k_bot.c @@ -473,6 +473,10 @@ fixed_t K_BotTopSpeedRubberband(player_t *player) --------------------------------------------------*/ fixed_t K_BotFrictionRubberband(player_t *player, fixed_t frict) { +#if 1 + (void)player; + return frict; +#else fixed_t rubberband = K_BotRubberband(player) - FRACUNIT; fixed_t newfrict; @@ -490,6 +494,7 @@ fixed_t K_BotFrictionRubberband(player_t *player, fixed_t frict) newfrict = FRACUNIT; return newfrict; +#endif } /*--------------------------------------------------