fix: increase spawn phase duration

This commit is contained in:
Restart2008
2025-10-28 20:05:35 -07:00
parent f6cc02f852
commit c84f41ce34
+1 -2
View File
@@ -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 {