From dca1ceaf20a79c936c6b5cb31f0a4a6e96d172de Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Thu, 7 Apr 2022 10:39:13 -0400 Subject: [PATCH] fix aug cost --- src/Augmentation/Augmentation.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Augmentation/Augmentation.tsx b/src/Augmentation/Augmentation.tsx index a2ccfc8b1..15db04d2e 100644 --- a/src/Augmentation/Augmentation.tsx +++ b/src/Augmentation/Augmentation.tsx @@ -410,8 +410,8 @@ export class Augmentation { this.info = params.info; this.prereqs = params.prereqs ? params.prereqs : []; - this.baseRepRequirement = params.repCost * BitNodeMultipliers.AugmentationRepCost; - this.baseCost = params.moneyCost * BitNodeMultipliers.AugmentationMoneyCost; + this.baseRepRequirement = params.repCost; + this.baseCost = params.moneyCost; this.startingCost = this.baseCost; this.factions = params.factions;