From 250b1e189a2098732efa511c488e8c765d7ea066 Mon Sep 17 00:00:00 2001 From: Slava Bacherikov Date: Tue, 12 Feb 2019 16:26:02 +0200 Subject: [PATCH] Fix crash when g_maxplayers smaller than current amount of active players --- qcsrc/server/bot/default/bot.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/server/bot/default/bot.qc b/qcsrc/server/bot/default/bot.qc index 9ebcffae3c..2552cc4bab 100644 --- a/qcsrc/server/bot/default/bot.qc +++ b/qcsrc/server/bot/default/bot.qc @@ -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(); } -- 2.39.2