have multiplayer game start every 10 mins

This commit is contained in:
Evan
2024-12-20 20:31:41 -08:00
parent 5307285d8b
commit 3b2d831dfc
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -166,10 +166,10 @@ export abstract class DefaultConfig implements Config {
return 100
}
gameCreationRate(): number {
return 60 * 1000
return 10 * 60 * 1000
}
lobbyLifetime(): number {
return 120 * 1000
return 10 * 120 * 1000
}
theme(): Theme { return pastelTheme; }