From 0bff9be8a76f1685a8ca26d4c903e021db066fb5 Mon Sep 17 00:00:00 2001 From: phyzical Date: Fri, 15 Apr 2022 11:14:16 +0800 Subject: [PATCH] missed one reference to making baseCost static --- src/Augmentation/Augmentation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Augmentation/Augmentation.tsx b/src/Augmentation/Augmentation.tsx index 247c535a3..ebbbe84a8 100644 --- a/src/Augmentation/Augmentation.tsx +++ b/src/Augmentation/Augmentation.tsx @@ -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);