lower pop growth

This commit is contained in:
1brucben
2025-05-29 12:51:02 +02:00
parent 7ea0b931dd
commit eda563ebc6
+1 -1
View File
@@ -646,7 +646,7 @@ export class DefaultConfig implements Config {
//population grows proportional to current population with growth decreasing as it approaches max
// smaller countries recieve a boost to pop growth to speed up early game
const baseAdditionRate = 10;
const basePopGrowthRate = 1300 / max + 1 / 140;
const basePopGrowthRate = 1000 / max + 1 / 140;
const reproductionPop = 0.85 * player.troops() + 1.15 * player.workers();
let toAdd = baseAdditionRate + basePopGrowthRate * reproductionPop;
const totalPop = player.totalPopulation();