diff --git a/src/k_bot.cpp b/src/k_bot.cpp index 299a0f42b..8e4f2f597 100644 --- a/src/k_bot.cpp +++ b/src/k_bot.cpp @@ -581,7 +581,9 @@ const botcontroller_t *K_GetBotController(const mobj_t *mobj) fixed_t K_BotMapModifier(void) { constexpr INT32 complexity_scale = 10000; - constexpr fixed_t modifier_max = FRACUNIT * 2; + fixed_t modifier_max = FRACUNIT * 2; + fixed_t modifier_min = 4 * FRACUNIT / 10; + modifier_min -= FRACUNIT; const fixed_t complexity_value = std::clamp( FixedDiv(K_GetTrackComplexity(), complexity_scale),