game start delay 5 seconds

This commit is contained in:
evanpelle
2024-08-16 20:42:10 -07:00
parent 1cf112c0fb
commit bc8463fa79
12 changed files with 54 additions and 39 deletions
+1
View File
@@ -9,6 +9,7 @@ export interface Config {
gameCreationRate(): number
lobbyLifetime(): number
numBots(): number
turnsUntilGameStart(): number
}
export interface PlayerConfig {
+4 -1
View File
@@ -4,8 +4,11 @@ import {Config, PlayerConfig, Theme} from "./Config";
import {pastelTheme} from "./PastelTheme";
export const defaultConfig = new class implements Config {
turnsUntilGameStart(): number {
return 50
}
numBots(): number {
return 1000
return 20
}
player(): PlayerConfig {
return defaultPlayerConfig