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[] = []