From 86415dafe9d3f323de298ff6402d783129c152b1 Mon Sep 17 00:00:00 2001 From: 1brucben <1benjbruce@gmail.com> Date: Sat, 26 Apr 2025 03:10:17 +0200 Subject: [PATCH] less gold in game --- src/core/configuration/DefaultConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 404b9291e..18003adc6 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -639,7 +639,7 @@ export class DefaultConfig implements Config { const cityGold = cityWorkers / 2000; const tileGold = (ruralWorkers ** 0.5 * numTiles ** 0.5) / 600; - const totalGold = 13 * (cityGold + tileGold) ** 0.8; + const totalGold = 10 * (cityGold + tileGold) ** 0.8; return Number.isFinite(totalGold) ? totalGold : 0; }