diff --git a/src/js/economyJS.js b/src/js/economyJS.js index 175b9620a6040975a935b01afda01ffc01a992f3..bd40f80198d4b7283a23179e156604de686b5a50 100644 --- a/src/js/economyJS.js +++ b/src/js/economyJS.js @@ -574,7 +574,7 @@ globalThis.calculateCosts = (function() { function getIncubatorCosts() { let costs = 0; if (V.incubator > 0) { - costs += ((V.incubatorWeightSetting + V.incubatorMusclesSetting + V.incubatorReproductionSetting + V.incubatorGrowthStimsSetting) * 500); + costs += ((V.incubatorUpgradeWeight + V.incubatorUpgradeMuscles + V.incubatorUpgradeReproduction + V.incubatorUpgradeGrowthStims + V.incubatorUpgradeOrgans) * 500); if (V.incubatorUpgradePregAdaptation === 1) { costs += 5000 * V.incubator; } @@ -585,9 +585,9 @@ globalThis.calculateCosts = (function() { function getIncubatorSlavesCosts() { const facIncMultiplier = V.facilityCost * V.tanks.length; let costs = (facIncMultiplier * 10); - costs += (0.2 * V.incubatorUpgradeWeight + 0.2 * V.incubatorUpgradeMuscles + - 0.2 * V.incubatorUpgradeReproduction + 0.2 * V.incubatorUpgradeGrowthStims + - 0.5 * V.incubatorUpgradeSpeed) * facIncMultiplier; + costs += (0.2 * V.incubatorWeightSetting + 0.2 * V.incubatorMusclesSetting + + 0.2 * V.incubatorReproductionSetting + 0.2 * V.incubatorGrowthStimsSetting + + 0.2 * V.incubatorPregAdaptationPower + 0.5 * V.incubatorUpgradeSpeed) * facIncMultiplier; return costs; }