From d3b7e60cae3d27949a2c0e20ec6d1e123177c7d4 Mon Sep 17 00:00:00 2001 From: Sainan Date: Mon, 23 Dec 2024 22:45:53 +0100 Subject: [PATCH] Remove skipStoryModeChoice as this is not a thing in-game anymore --- config.json.example | 1 - src/services/configService.ts | 1 - src/services/inventoryService.ts | 3 --- static/webui/index.html | 4 ---- static/webui/script.js | 1 - 5 files changed, 10 deletions(-) diff --git a/config.json.example b/config.json.example index d027f7cb..e8e80605 100644 --- a/config.json.example +++ b/config.json.example @@ -9,7 +9,6 @@ "httpsPort": 443, "administratorNames": [], "autoCreateAccount": true, - "skipStoryModeChoice": true, "skipTutorial": true, "skipAllDialogue": true, "unlockAllScans": true, diff --git a/src/services/configService.ts b/src/services/configService.ts index ecc6d359..abc17ebe 100644 --- a/src/services/configService.ts +++ b/src/services/configService.ts @@ -34,7 +34,6 @@ interface IConfig { myIrcAddresses?: string[]; administratorNames?: string[]; autoCreateAccount?: boolean; - skipStoryModeChoice?: boolean; skipTutorial?: boolean; skipAllDialogue?: boolean; unlockAllScans?: boolean; diff --git a/src/services/inventoryService.ts b/src/services/inventoryService.ts index 2894a937..81c400ab 100644 --- a/src/services/inventoryService.ts +++ b/src/services/inventoryService.ts @@ -55,9 +55,6 @@ export const createInventory = async ( LoadOutPresets: defaultItemReferences.loadOutPresetId, Ships: [defaultItemReferences.ship] }); - if (config.skipStoryModeChoice) { - inventory.StoryModeChoice = "WARFRAME"; - } if (config.skipTutorial) { inventory.PlayedParkourTutorial = true; inventory.ReceivedStartingGear = true; diff --git a/static/webui/index.html b/static/webui/index.html index 416d1978..14ae8914 100644 --- a/static/webui/index.html +++ b/static/webui/index.html @@ -203,10 +203,6 @@

You must be an administrator to use this feature. To become an administrator, add "" to administratorNames in the config.json.

-
- - -
diff --git a/static/webui/script.js b/static/webui/script.js index 56736c38..7772a90a 100644 --- a/static/webui/script.js +++ b/static/webui/script.js @@ -774,7 +774,6 @@ $("#mod-to-acquire").on("input", () => { const uiConfigs = [ "autoCreateAccount", - "skipStoryModeChoice", "skipTutorial", "skipAllDialogue", "unlockAllScans",