diff --git a/src/Bladeburner/GeneralActions.tsx b/src/Bladeburner/GeneralActions.tsx index fa4728f85..62c962eec 100644 --- a/src/Bladeburner/GeneralActions.tsx +++ b/src/Bladeburner/GeneralActions.tsx @@ -4,15 +4,16 @@ import { IMap } from "../types"; export const GeneralActions: IMap = {}; let actionNames : Array = [ - "Training", - "Field Analysis", - "Recruitment", - "Diplomacy", - "Hyperbolic Regeneration Chamber", - "Incite Violence" + "Training", + "Field Analysis", + "Recruitment", + "Diplomacy", + "Hyperbolic Regeneration Chamber", + "Incite Violence" ]; + for (let actionName of actionNames){ - GeneralActions[actionName] = new Action({ - name: actionName, - }); -} + GeneralActions[actionName] = new Action({ + name: actionName, + }); +} \ No newline at end of file