From 563392a7e8fcd6ab9b3f0af63cdb48e653ebeb41 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 21 Jul 2026 22:58:07 +0200 Subject: [PATCH] remove warning mark when readying with right player count --- plugin/autoexec.sp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/autoexec.sp b/plugin/autoexec.sp index 0bb3c8e..a75a578 100644 --- a/plugin/autoexec.sp +++ b/plugin/autoexec.sp @@ -261,6 +261,8 @@ public void CheckPlayerCount(int team) { warned[team] = true; GameRules_SetProp("m_bTeamReady", 0, _ , team, true); PrintToChatAll("Warning, config is set to 6v6 but you readied up with %d players", playerCount); + } else { + warned[team] = true; } } }