From 81d849dec11d79103dc6f6eaf83d60ecdc6c7b70 Mon Sep 17 00:00:00 2001 From: Evan Date: Sun, 5 Jan 2025 13:40:18 -0800 Subject: [PATCH] make public games start every minute --- src/core/configuration/DefaultConfig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 5d7ac6704..7c0d476f4 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -9,10 +9,10 @@ export abstract class DefaultServerConfig implements ServerConfig { return 100 } gameCreationRate(): number { - return 10 * 60 * 1000 + return 1 * 60 * 1000 } lobbyLifetime(): number { - return 10 * 120 * 1000 + return 2 * 60 * 1000 } }