updated game duration to 30 mins

This commit is contained in:
evanpelle
2024-08-27 06:50:35 -07:00
parent f03542f1d7
commit b672a79dcd
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -61,4 +61,5 @@
* PERF: render tiles more efficiently
* Add terrain elevation to map
* boats can go around the world
* make bots more likely to attack weaker players
* make bots more likely to attack weaker players
* use better favicon
+1 -1
View File
@@ -13,7 +13,7 @@ export enum GamePhase {
export class GameServer {
private gameDuration = 20 * 60 * 1000 // TODO!!! fix this
private gameDuration = 30 * 60 * 1000 // TODO!!! fix this
private turns: Turn[] = []
private intents: Intent[] = []