From abdc207b12f505d817d061968d353b224ea43dba Mon Sep 17 00:00:00 2001 From: Adrian Gaudebert Date: Tue, 5 Nov 2024 10:35:25 +0100 Subject: [PATCH] Increase the number of culture to reach to win. --- src/update.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/update.ts b/src/update.ts index 13c4fce..27a96ff 100644 --- a/src/update.ts +++ b/src/update.ts @@ -78,7 +78,7 @@ export default function update(timestamp: number) { V.resources.culture += outputPerMilisecond * delta * (V.units.philosopher || 0); // Check if the game is won. - if (V.resources.culture >= 2) { + if (V.resources.culture >= 2000) { V.victory = true; }