From e9bf55974b8b29d9242a07d9fa5902c8988e5133 Mon Sep 17 00:00:00 2001 From: 1brucben <1benjbruce@gmail.com> Date: Sat, 26 Apr 2025 20:37:54 +0200 Subject: [PATCH] less gold --- 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 5b37fdaff..8f6362477 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -646,7 +646,7 @@ export class DefaultConfig implements Config { const cityGold = cityWorkers / 2000; const tileGold = (ruralWorkers ** 0.5 * numTiles ** 0.5) / 600; - const totalGold = 8 * (cityGold + tileGold) ** 0.8; + const totalGold = 6 * (cityGold + tileGold) ** 0.8; return Number.isFinite(totalGold) ? totalGold : 0; }