diff --git a/src/Prestige.ts b/src/Prestige.ts index d845af0c2..3c77e806f 100755 --- a/src/Prestige.ts +++ b/src/Prestige.ts @@ -31,7 +31,7 @@ import Decimal from "decimal.js"; const BitNode8StartingMoney = 250e6; // Prestige by purchasing augmentation -function prestigeAugmentation(): void { +export function prestigeAugmentation(): void { initBitNodeMultipliers(Player); const maintainMembership = Player.factions.filter(function (faction) { @@ -141,7 +141,7 @@ function prestigeAugmentation(): void { } // Prestige by destroying Bit Node and gaining a Source File -function prestigeSourceFile(flume: boolean): void { +export function prestigeSourceFile(flume: boolean): void { initBitNodeMultipliers(Player); updateSourceFileFlags(Player); @@ -265,5 +265,3 @@ function prestigeSourceFile(flume: boolean): void { resetPidCounter(); } - -export { prestigeAugmentation, prestigeSourceFile };