mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-19 12:01:36 +00:00
Fix Lv.MAX bots not being allowed to rank down
This commit is contained in:
parent
ec22186506
commit
632872dca4
1 changed files with 2 additions and 2 deletions
|
|
@ -542,9 +542,9 @@ void K_IncreaseBotDifficulty(player_t *bot)
|
|||
|
||||
bot->botvars.diffincrease = 0;
|
||||
|
||||
if (bot->botvars.difficulty >= MAXBOTDIFFICULTY)
|
||||
if (grandprixinfo.masterbots == true)
|
||||
{
|
||||
// Already at max difficulty, don't need to increase
|
||||
// Master bot difficulty is not dynamic.
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue