diff --git a/src/Augmentation/AugmentationHelpers.tsx b/src/Augmentation/AugmentationHelpers.tsx index ffe362a4f..dc6d97d14 100644 --- a/src/Augmentation/AugmentationHelpers.tsx +++ b/src/Augmentation/AugmentationHelpers.tsx @@ -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; } diff --git a/src/Faction/FactionInfo.tsx b/src/Faction/FactionInfo.tsx index 40d931f81..7fa646575 100644 --- a/src/Faction/FactionInfo.tsx +++ b/src/Faction/FactionInfo.tsx @@ -553,9 +553,8 @@ export const FactionInfos: IMap = { It's too bad they won't live. But then again, who does?

- Note that for this faction, reputation can only be gained through {FactionNames.Bladeburners} actions. - Completing {FactionNames.Bladeburners} - contracts/operations will increase your reputation. + Note that for this faction, reputation can only be gained through {FactionNames.Bladeburners} actions.{" "} + Completing {FactionNames.Bladeburners} contracts/operations will increase your reputation. ), [], diff --git a/src/NetscriptFunctions/Singularity.ts b/src/NetscriptFunctions/Singularity.ts index 038052f4e..034eb7051 100644 --- a/src/NetscriptFunctions/Singularity.ts +++ b/src/NetscriptFunctions/Singularity.ts @@ -219,7 +219,7 @@ export function NetscriptSingularity( workerScript.running = false; killWorkerScript(workerScript); }, - installAugmentations: function (_cbScript: unknown): boolean { + installAugmentations: function (_cbScript: unknown = ""): boolean { updateRam("installAugmentations"); const cbScript = helper.string("installAugmentations", "cbScript", _cbScript); helper.checkSingularityAccess("installAugmentations"); diff --git a/src/ui/GameRoot.tsx b/src/ui/GameRoot.tsx index 15d5c59f2..91a18c527 100644 --- a/src/ui/GameRoot.tsx +++ b/src/ui/GameRoot.tsx @@ -491,7 +491,6 @@ export function GameRoot({ player, engine, terminal }: IProps): React.ReactEleme }} installAugmentationsFn={() => { installAugmentations(); - Router.toTerminal(); }} /> );