missed one reference to making baseCost static

This commit is contained in:
phyzical 2022-04-15 11:14:16 +08:00
parent db97125d22
commit 0bff9be8a7

@ -612,7 +612,7 @@ export class Augmentation {
moneyCost = augmentationReference.baseCost * multiplier * BitNodeMultipliers.AugmentationMoneyCost;
for (let i = 0; i < player.queuedAugmentations.length; ++i) {
augmentationReference.baseCost *= getBaseAugmentationPriceMultiplier();
moneyCost *= getBaseAugmentationPriceMultiplier();
}
} else if (augmentationReference.factions.includes(FactionNames.Infiltrators)) {
const infiltratorAugmentationNames = initInfiltratorsAugmentations().map((augmentation) => augmentation.name);