From 2ffd575fcdfbcfc1a8764248f9a37c8ac41ae464 Mon Sep 17 00:00:00 2001 From: minenice55 Date: Sat, 13 Dec 2025 19:46:15 -0500 Subject: [PATCH] test: this might actually be fine? --- src/k_bot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_bot.cpp b/src/k_bot.cpp index 410ad9b36..92342b30a 100644 --- a/src/k_bot.cpp +++ b/src/k_bot.cpp @@ -492,7 +492,7 @@ static fixed_t K_BotSpeedScaled(const player_t *player, fixed_t speed) moveFactor = FixedDiv(FRACUNIT, moveFactor); // The full value is way too strong, reduce it. - moveFactor -= (moveFactor - FRACUNIT)*3/4; + // moveFactor -= (moveFactor - FRACUNIT)*3/4; result = FixedMul(result, moveFactor); }