From c84f41ce3493c9c9737b3699537302e62e87281b Mon Sep 17 00:00:00 2001 From: Restart2008 Date: Tue, 28 Oct 2025 20:05:35 -0700 Subject: [PATCH] fix: increase spawn phase duration --- src/core/configuration/DefaultConfig.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index ffd8987ca..2537eb999 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -6,7 +6,6 @@ import { Game, GameMapType, GameMode, - GameType, Gold, Player, PlayerInfo, @@ -629,7 +628,7 @@ export class DefaultConfig implements Config { } numSpawnPhaseTurns(): number { // Spawn phase (choosing spawn points) defaults - return this._gameConfig.gameType === GameType.Singleplayer ? 100 : 300; + return 10; } numPreparationPhaseTurns(): number {