From ee45f919602801edcd1f5c0e10dd73e0ec2c52f4 Mon Sep 17 00:00:00 2001 From: phyzical Date: Wed, 30 Mar 2022 19:17:24 +0800 Subject: [PATCH] move back to original spot --- src/Augmentation/AugmentationHelpers.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Augmentation/AugmentationHelpers.tsx b/src/Augmentation/AugmentationHelpers.tsx index 690bf0367..4f8e7fe81 100644 --- a/src/Augmentation/AugmentationHelpers.tsx +++ b/src/Augmentation/AugmentationHelpers.tsx @@ -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(),