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