1
0
Fork 0
mirror of https://codeberg.org/spire/autoexec.git synced 2026-08-02 12:14:52 +02:00

remove warning mark when readying with right player count

This commit is contained in:
Robin Appelman 2026-07-21 22:58:07 +02:00
commit 563392a7e8

View file

@ -261,6 +261,8 @@ public void CheckPlayerCount(int team) {
warned[team] = true; warned[team] = true;
GameRules_SetProp("m_bTeamReady", 0, _ , team, true); GameRules_SetProp("m_bTeamReady", 0, _ , team, true);
PrintToChatAll("Warning, config is set to 6v6 but you readied up with %d players", playerCount); PrintToChatAll("Warning, config is set to 6v6 but you readied up with %d players", playerCount);
} else {
warned[team] = true;
} }
} }
} }