From e65efdebc7597ce3a8114be024c3a5a8844c0d24 Mon Sep 17 00:00:00 2001 From: Evan Date: Thu, 20 Mar 2025 11:11:32 -0700 Subject: [PATCH] revert lobby times back to 60s, lobbies too small off times --- src/core/configuration/DefaultConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 6b63fcc06..2a9bece6f 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -55,7 +55,7 @@ export abstract class DefaultServerConfig implements ServerConfig { return 100; } gameCreationRate(): number { - return 30 * 1000; + return 60 * 1000; } lobbyMaxPlayers(map: GameMapType): number { if (map == GameMapType.World) {