mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-22 05:13:48 +00:00
eliminate worker growth
This commit is contained in:
@@ -646,7 +646,7 @@ export class DefaultConfig implements Config {
|
||||
// smaller countries recieve a boost to pop growth to speed up early game
|
||||
const baseAdditionRate = 10;
|
||||
const basePopGrowthRate = 1400 / max + 1 / 175;
|
||||
const reproductionPop = player.troops() + 1.15 * player.workers();
|
||||
const reproductionPop = player.troops() + player.workers();
|
||||
let toAdd = baseAdditionRate + basePopGrowthRate * reproductionPop;
|
||||
const totalPop = player.totalPopulation();
|
||||
const ratio = Math.max(1 - totalPop / max, 0);
|
||||
|
||||
Reference in New Issue
Block a user