From 3dee43674f10d8220998bd1d779ceaa3bea9a006 Mon Sep 17 00:00:00 2001 From: 1brucben <1benjbruce@gmail.com> Date: Sat, 10 May 2025 02:28:19 +0200 Subject: [PATCH] gold adjust --- 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 773b112a9..04b51715c 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -670,7 +670,7 @@ export class DefaultConfig implements Config { const cityGold = cityWorkers / 2000; const tileGold = (ruralWorkers ** 0.5 * numTiles ** 0.5) / 600; - const totalGold = 6 * (cityGold + tileGold) ** 0.8; + const totalGold = 8.5 * (cityGold + tileGold) ** 0.7; return Number.isFinite(totalGold) ? totalGold : 0; }