diff --git a/src/client/index.html b/src/client/index.html
index 039737a21..413d2a5b0 100644
--- a/src/client/index.html
+++ b/src/client/index.html
@@ -28,7 +28,7 @@
OpenFront.io
- (v0.12.3)
+ (v0.12.4)
diff --git a/src/server/GameServer.ts b/src/server/GameServer.ts
index 20fbede82..40e9e4d68 100644
--- a/src/server/GameServer.ts
+++ b/src/server/GameServer.ts
@@ -213,7 +213,7 @@ export class GameServer {
return GamePhase.Lobby
}
- const noActive = this.activeClients.length
+ const noActive = this.activeClients.length == 0
const warmupOver = now > this.createdAt + this.config.lobbyLifetime() + 30 * 1000
const noRecentPings = now > this.lastPingUpdate + 20 * 1000