From 18dc75e6ca7e831051a44f658a4319602ec4a1df Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Fri, 1 Apr 2022 17:23:27 -0400 Subject: [PATCH] Make more accurate to how it used to work --- 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 33c1598a3..37d5c825b 100644 --- a/src/k_bot.c +++ b/src/k_bot.c @@ -644,7 +644,7 @@ fixed_t K_BotTopSpeedRubberband(player_t *player) --------------------------------------------------*/ fixed_t K_BotFrictionRubberband(player_t *player, fixed_t frict) { - const fixed_t value = 1024; + const fixed_t value = 20776; fixed_t rubberband = K_BotRubberband(player) - FRACUNIT; fixed_t newFrict = frict;