Fix Lv.MAX bots not being allowed to rank down

This commit is contained in:
Sally Coolatta 2024-04-30 14:24:12 -04:00
parent ec22186506
commit 632872dca4

View file

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