Revert bot complexity modifier ceiling

This commit is contained in:
Sally Coolatta 2023-12-18 14:38:11 -05:00
parent 347538c630
commit 1ff3706e64

View file

@ -500,7 +500,7 @@ fixed_t K_BotMapModifier(void)
const fixed_t complexity_value = std::clamp<fixed_t>(
FixedDiv(K_GetTrackComplexity(), complexity_scale),
-modifier_max,
modifier_max * 2
modifier_max
);
return FRACUNIT + complexity_value;