Merge pull request #3350 from phyzical/bugfix/3348

Fix for install augmentation stale objects bug
This commit is contained in:
hydroflame
2022-04-11 20:05:46 -04:00
committed by GitHub
4 changed files with 5 additions and 5 deletions
+2
View File
@@ -21,6 +21,7 @@ import {
initNeuroFluxGovernor,
initUnstableCircadianModulator,
} from "./AugmentationCreator";
import { Router } from "../ui/GameRoot";
export function AddToAugmentations(aug: Augmentation): void {
const name = aug.name;
@@ -194,6 +195,7 @@ function installAugmentations(force?: boolean): boolean {
);
}
prestigeAugmentation();
Router.toTerminal();
return true;
}