enable pause on replay

This commit is contained in:
evan
2025-05-11 11:43:13 -07:00
parent 6530456d38
commit ec323d2c1f
9 changed files with 56 additions and 13 deletions
+6 -1
View File
@@ -32,7 +32,12 @@ export async function setup(mapName: string, _gameConfig: GameConfig = {}) {
instantBuild: false,
..._gameConfig,
};
const config = new TestConfig(serverConfig, gameConfig, new UserSettings());
const config = new TestConfig(
serverConfig,
gameConfig,
new UserSettings(),
false,
);
// Create and return the game
return createGame([], [], gameMap, miniGameMap, config);