From 6f5d22c1bd037d5c51713f856911f4c69fbf3e97 Mon Sep 17 00:00:00 2001 From: phyzical Date: Wed, 30 Mar 2022 21:53:53 +0800 Subject: [PATCH] fix for off by one with neruflux --- src/Augmentation/AugmentationHelpers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Augmentation/AugmentationHelpers.tsx b/src/Augmentation/AugmentationHelpers.tsx index 4f8e7fe81..7b64bf229 100644 --- a/src/Augmentation/AugmentationHelpers.tsx +++ b/src/Augmentation/AugmentationHelpers.tsx @@ -89,7 +89,7 @@ function updateNeuroFluxGovernorCosts(neuroFluxGovernorAugmentation: Augmentatio neuroFluxGovernorAugmentation.baseCost = neuroFluxGovernorAugmentation.startingCost * multiplier * BitNodeMultipliers.AugmentationMoneyCost; - for (let i = 0; i < Player.queuedAugmentations.length - 1; ++i) { + for (let i = 0; i < Player.queuedAugmentations.length; ++i) { neuroFluxGovernorAugmentation.baseCost *= getBaseAugmentationPriceMultiplier(); } }