diff --git a/src/Augmentation/AugmentationHelpers.tsx b/src/Augmentation/AugmentationHelpers.tsx index f8b4a79cd..1d0c52d35 100644 --- a/src/Augmentation/AugmentationHelpers.tsx +++ b/src/Augmentation/AugmentationHelpers.tsx @@ -91,13 +91,15 @@ function updateNeuroFluxGovernorCosts(neuroFluxGovernorAugmentation: Augmentatio } export function updateAugmentationCosts(): void { + console.log(Player.queuedAugmentations); for (const name of Object.keys(Augmentations)) { if (Augmentations.hasOwnProperty(name)) { const augmentationToUpdate = Augmentations[name]; if (augmentationToUpdate.name === AugmentationNames.NeuroFluxGovernor) { updateNeuroFluxGovernorCosts(augmentationToUpdate); } else { - augmentationToUpdate.baseCost *= getGenericAugmentationPriceMultiplier(); + console.log(augmentationToUpdate.baseCost); + augmentationToUpdate.baseCost = augmentationToUpdate.startingCost * getGenericAugmentationPriceMultiplier(); } } } diff --git a/src/Prestige.ts b/src/Prestige.ts index 5299cb4c2..405fe5a73 100755 --- a/src/Prestige.ts +++ b/src/Prestige.ts @@ -1,5 +1,5 @@ -import { FactionNames } from './Faction/data/FactionNames'; -import { CityName } from './Locations/data/CityNames'; +import { FactionNames } from "./Faction/data/FactionNames"; +import { CityName } from "./Locations/data/CityNames"; import { Augmentations } from "./Augmentation/Augmentations"; import { augmentationExists, initAugmentations } from "./Augmentation/AugmentationHelpers"; import { AugmentationNames } from "./Augmentation/data/AugmentationNames"; @@ -263,7 +263,7 @@ export function prestigeSourceFile(flume: boolean): void { homeComp.messages.push(LiteratureNames.CorporationManagementHandbook); dialogBoxCreate( "You received a copy of the Corporation Management Handbook on your home computer. " + - "Read it if you need help getting started with Corporations!", + "Read it if you need help getting started with Corporations!", ); }