test: this might actually be fine?

This commit is contained in:
minenice55 2025-12-13 19:46:15 -05:00
parent 27c0051a46
commit 2ffd575fcd

View file

@ -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);
}