diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 38e557d52..6e8ba04d9 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -650,7 +650,7 @@ export class DefaultConfig implements Config { let toAdd = baseAdditionRate + basePopGrowthRate * reproductionPop; const totalPop = player.totalPopulation(); const ratio = 1 - totalPop / max; - toAdd *= ratio ^ 1.222; + toAdd *= ratio ** 1.222; if (player.type() === PlayerType.Bot) { toAdd *= 0.7;