Increase the number of culture to reach to win.

This commit is contained in:
Adrian 2024-11-05 10:35:25 +01:00
parent fbe48f925d
commit abdc207b12

View File

@ -78,7 +78,7 @@ export default function update(timestamp: number) {
V.resources.culture += outputPerMilisecond * delta * (V.units.philosopher || 0); V.resources.culture += outputPerMilisecond * delta * (V.units.philosopher || 0);
// Check if the game is won. // Check if the game is won.
if (V.resources.culture >= 2) { if (V.resources.culture >= 2000) {
V.victory = true; V.victory = true;
} }