fixed inverted check for game start (#288)

This commit is contained in:
evanpelle
2025-03-18 14:18:18 -07:00
committed by GitHub
parent 24f25d677a
commit bd2c270ba3
+1 -1
View File
@@ -205,7 +205,7 @@ async function fetchLobbies(): Promise<number> {
});
lobbyInfos.forEach((l) => {
if (l.msUntilStart <= 250 || l.gameConfig.maxPlayers >= l.numClients) {
if (l.msUntilStart <= 250 || l.gameConfig.maxPlayers <= l.numClients) {
publicLobbyIDs.delete(l.gameID);
}
});