diff --git a/Content.Server/Connection/ConnectionManager.cs b/Content.Server/Connection/ConnectionManager.cs index e1f370a972..febdb56e32 100644 --- a/Content.Server/Connection/ConnectionManager.cs +++ b/Content.Server/Connection/ConnectionManager.cs @@ -154,7 +154,7 @@ namespace Content.Server.Connection { var min = _cfg.GetCVar(CCVars.WhitelistMinPlayers); var max = _cfg.GetCVar(CCVars.WhitelistMaxPlayers); - var playerCountValid = _plyMgr.PlayerCount > min && _plyMgr.PlayerCount < max; + var playerCountValid = _plyMgr.PlayerCount >= min && _plyMgr.PlayerCount < max; if (playerCountValid && await _db.GetWhitelistStatusAsync(userId) == false && adminData is null)