]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/bot/default/bot.qc
Fix crash when g_maxplayers smaller than current amount of active players
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / bot / default / bot.qc
index 9ebcffae3c8383657da46d4b571e24dfcdd92b2a..2552cc4bab6827799f66f90244b715f9e2b5c52e 100644 (file)
@@ -611,7 +611,7 @@ bool bot_fixcount()
                // cap bots to the max players allowed by the server
                int player_limit = GetPlayerLimit();
                if(player_limit)
-                       bots = min(bots, player_limit - activerealplayers);
+                       bots = min(bots, max(player_limit - activerealplayers, 0));
                bots = min(bots, maxclients - realplayers);
 
                if(bots > minbots)
@@ -634,7 +634,7 @@ bool bot_fixcount()
                                return false;
                        }
                }
-               while (currentbots > bots)
+               while (currentbots > bots && bots >= 0)
                        bot_removenewest();
        }