Remove skipStoryModeChoice as this is not a thing in-game anymore

This commit is contained in:
Sainan 2024-12-23 22:45:53 +01:00
parent 7dcb1f4fa4
commit d3b7e60cae
5 changed files with 0 additions and 10 deletions

View File

@ -9,7 +9,6 @@
"httpsPort": 443, "httpsPort": 443,
"administratorNames": [], "administratorNames": [],
"autoCreateAccount": true, "autoCreateAccount": true,
"skipStoryModeChoice": true,
"skipTutorial": true, "skipTutorial": true,
"skipAllDialogue": true, "skipAllDialogue": true,
"unlockAllScans": true, "unlockAllScans": true,

View File

@ -34,7 +34,6 @@ interface IConfig {
myIrcAddresses?: string[]; myIrcAddresses?: string[];
administratorNames?: string[]; administratorNames?: string[];
autoCreateAccount?: boolean; autoCreateAccount?: boolean;
skipStoryModeChoice?: boolean;
skipTutorial?: boolean; skipTutorial?: boolean;
skipAllDialogue?: boolean; skipAllDialogue?: boolean;
unlockAllScans?: boolean; unlockAllScans?: boolean;

View File

@ -55,9 +55,6 @@ export const createInventory = async (
LoadOutPresets: defaultItemReferences.loadOutPresetId, LoadOutPresets: defaultItemReferences.loadOutPresetId,
Ships: [defaultItemReferences.ship] Ships: [defaultItemReferences.ship]
}); });
if (config.skipStoryModeChoice) {
inventory.StoryModeChoice = "WARFRAME";
}
if (config.skipTutorial) { if (config.skipTutorial) {
inventory.PlayedParkourTutorial = true; inventory.PlayedParkourTutorial = true;
inventory.ReceivedStartingGear = true; inventory.ReceivedStartingGear = true;

View File

@ -203,10 +203,6 @@
<p>You must be an administrator to use this feature. To become an administrator, add <code>"<span class="displayname"></span>"</code> to <code>administratorNames</code> in the config.json.</p> <p>You must be an administrator to use this feature. To become an administrator, add <code>"<span class="displayname"></span>"</code> to <code>administratorNames</code> in the config.json.</p>
</div> </div>
<form id="server-settings" class="d-none" onsubmit="doChangeSettings();return false;"> <form id="server-settings" class="d-none" onsubmit="doChangeSettings();return false;">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="skipStoryModeChoice" />
<label class="form-check-label" for="skipStoryModeChoice">Skip Story Mode Choice</label>
</div>
<div class="form-check"> <div class="form-check">
<input class="form-check-input" type="checkbox" id="skipTutorial" /> <input class="form-check-input" type="checkbox" id="skipTutorial" />
<label class="form-check-label" for="skipTutorial">Skip Tutorial</label> <label class="form-check-label" for="skipTutorial">Skip Tutorial</label>

View File

@ -774,7 +774,6 @@ $("#mod-to-acquire").on("input", () => {
const uiConfigs = [ const uiConfigs = [
"autoCreateAccount", "autoCreateAccount",
"skipStoryModeChoice",
"skipTutorial", "skipTutorial",
"skipAllDialogue", "skipAllDialogue",
"unlockAllScans", "unlockAllScans",