Skip to content

Commit

Permalink
fix(server): simplify playercount check
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMcAssey committed Jan 23, 2025
1 parent c59161f commit 4ef539c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GLOKON.Baiters.Core/BaitersServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ private void UpdatePlayerCount()
{
_lobby.Value.SetData("cap", MaxPlayerCount.ToString());
}
else if (PlayerCount < 12)
else
{
_lobby.Value.SetData("cap", "12+");
}
Expand Down

0 comments on commit 4ef539c

Please sign in to comment.