another gold fix

This commit is contained in:
1brucben
2025-04-26 02:29:34 +02:00
parent a8a7a61c8b
commit c02bca6434
+2 -2
View File
@@ -637,9 +637,9 @@ export class DefaultConfig implements Config {
const ruralWorkers = totalWorkers - cityWorkers;
const cityGold = cityWorkers / 2000;
const tileGold = (ruralWorkers ** 0.4 * numTiles ** 0.4) / 44;
const tileGold = (ruralWorkers ** 0.5 * numTiles ** 0.5) / 600;
const totalGold = cityGold + tileGold;
const totalGold = 13 * (cityGold + tileGold) ** 0.8;
return Number.isFinite(totalGold) ? totalGold : 0;
}