have multiplayer game start every 10 mins

This commit is contained in:
Evan
2024-12-20 16:45:25 -08:00
parent 5307285d8b
commit 3b2d831dfc
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -248,8 +248,8 @@
* give naval units health DONE 12/20/2024
* make shells larger DONE 12/20/2024
* make shells more frequent & less attack DONE 12/20/2024
* have game start every 10 mins DONE 12/20/2024
* bug: NPCs don't have money
* have game start every 15 mins
* create more prominant discord link
* make attack bonus based on current attack size
* make fallout harder to capture, h-bombs little smaller
+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; }