diff --git a/AutismBotIngame/scripting/autism_bot_info.sp b/AutismBotIngame/scripting/autism_bot_info.sp index b51ab27e..f1d0faad 100644 --- a/AutismBotIngame/scripting/autism_bot_info.sp +++ b/AutismBotIngame/scripting/autism_bot_info.sp @@ -271,19 +271,19 @@ public Action bot_check_connect(Handle timer, any data) for (int i = 1; i <= MaxClients; i++) if (IsValidClient(i) && !IsFakeClient(i)) { - if (client_count > 60) - { - if (is_bot_player(i)) - { - KickClient(i, "server full you need to leave"); - } - } - else if (50 < client_count < 60) + if (client_count > 50) { found_bot1 = true; - found_bot2 = true; - found_bot3 = true; - found_bot4 = true; + found_bot2 = true; + found_bot3 = true; + found_bot4 = true; + if (client_count > 60) + { + if (is_bot_player(i)) + { + KickClient(i, "server full you need to leave"); + } + } } else {