From 13e2a02b2db472a417ba788b2764263b3c921d78 Mon Sep 17 00:00:00 2001 From: evan Date: Wed, 23 Apr 2025 12:30:33 -0700 Subject: [PATCH] fix private games not archiving because they haven't prestarted --- src/server/GameServer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/GameServer.ts b/src/server/GameServer.ts index 9cbd712c2..a267c4f3a 100644 --- a/src/server/GameServer.ts +++ b/src/server/GameServer.ts @@ -356,7 +356,7 @@ export class GameServer { client.ws.close(1000, "game has ended"); } }); - if (!this._hasPrestarted || !this._hasStarted) { + if (!this._hasPrestarted && !this._hasStarted) { this.log.info(`game not started, not archiving game`); return; }