update meta: cities 1M, gold addition rate

This commit is contained in:
Evan
2025-04-09 20:56:41 -07:00
parent 76e066c793
commit da100630d1
+2 -1
View File
@@ -620,7 +620,8 @@ export class DefaultConfig implements Config {
}
goldAdditionRate(player: Player): number {
return Math.sqrt(player.workers() * player.numTilesOwned()) / 200;
const ratio = Math.pow(player.workers() / player.population(), 1.3);
return Math.floor(Math.sqrt(player.workers()) * ratio * 5);
}
troopAdjustmentRate(player: Player): number {