From fb332bc827037ee0093fce1519b0cf24631d73cd Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 28 Feb 2025 09:02:50 -0800 Subject: [PATCH] make games every 30s --- 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 9881eacfd..a0055a185 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -31,10 +31,10 @@ export abstract class DefaultServerConfig implements ServerConfig { return 100; } gameCreationRate(): number { - return 1 * 60 * 1000; + return 30 * 1000; } lobbyLifetime(): number { - return 2 * 60 * 1000; + return 1 * 60 * 1000; } workerIndex(gameID: GameID): number { return simpleHash(gameID) % this.numWorkers();