This commit is contained in:
Olivier Gagnon 2021-10-23 10:08:06 -04:00
parent 63939509e5
commit 9982951650

@ -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 };