Fix aug cost

This commit is contained in:
Olivier Gagnon 2022-03-31 10:45:52 -04:00
parent d814a81b79
commit 65c8e2b280

@ -97,7 +97,10 @@ export function updateAugmentationCosts(): void {
if (augmentationToUpdate.name === AugmentationNames.NeuroFluxGovernor) {
updateNeuroFluxGovernorCosts(augmentationToUpdate);
} else {
augmentationToUpdate.baseCost = augmentationToUpdate.startingCost * getGenericAugmentationPriceMultiplier();
augmentationToUpdate.baseCost =
augmentationToUpdate.startingCost *
getGenericAugmentationPriceMultiplier() *
BitNodeMultipliers.AugmentationMoneyCost;
}
}
}