From b672a79dcde5cbacfae7e2d672840e084758c1a5 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Tue, 27 Aug 2024 06:50:35 -0700 Subject: [PATCH] updated game duration to 30 mins --- TODO.txt | 3 ++- src/server/GameServer.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/TODO.txt b/TODO.txt index 2a9294a00..ad8035fae 100644 --- a/TODO.txt +++ b/TODO.txt @@ -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 \ No newline at end of file +* make bots more likely to attack weaker players +* use better favicon \ No newline at end of file diff --git a/src/server/GameServer.ts b/src/server/GameServer.ts index d5c6ded96..e122f891e 100644 --- a/src/server/GameServer.ts +++ b/src/server/GameServer.ts @@ -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[] = []