move back to original spot

This commit is contained in:
phyzical 2022-03-30 19:17:24 +08:00
parent 7338bb6766
commit ee45f91960

@ -23,6 +23,11 @@ import {
} from "./AugmentationCreator";
import { BitNodeMultipliers } from "../BitNode/BitNodeMultipliers";
export function AddToAugmentations(aug: Augmentation): void {
const name = aug.name;
Augmentations[name] = aug;
}
export function getNextNeuroFluxLevel(): number {
// Get current Neuroflux level based on Player's augmentations
let currLevel = 0;
@ -41,11 +46,6 @@ export function getNextNeuroFluxLevel(): number {
return currLevel + 1;
}
export function AddToAugmentations(aug: Augmentation): void {
const name = aug.name;
Augmentations[name] = aug;
}
function createAugmentations(): void {
[
initNeuroFluxGovernor(),