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",