Merge pull request #3652 from nickofolas/fix/bn-mult-rep-cost

AUGMENTATIONS: Fix Augmentation rep req not being properly influenced by BitNode multipliers
This commit is contained in:
hydroflame 2022-05-14 11:03:17 -04:00 committed by GitHub
commit 6e1c650813
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -631,6 +631,7 @@ export class Augmentation {
augmentationReference.baseCost *
getGenericAugmentationPriceMultiplier() *
BitNodeMultipliers.AugmentationMoneyCost;
repCost = augmentationReference.baseRepRequirement * BitNodeMultipliers.AugmentationRepCost;
}
return { moneyCost, repCost };
}