mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Allow complexity to drop a little lower
This commit is contained in:
parent
0cb1f7bc41
commit
55d63fb402
1 changed files with 3 additions and 1 deletions
|
|
@ -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<fixed_t>(
|
||||
FixedDiv(K_GetTrackComplexity(), complexity_scale),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue