feat: unlock Steel Path with unlockAllMissions #188

Merged
Sainan merged 1 commits from steel-path into main 2024-05-07 14:50:39 -07:00

View File

@ -42,7 +42,11 @@ const inventoryController: RequestHandler = async (request: Request, response: R
inventoryResponse.PremiumCredits = 999999999;
}
if (config.unlockAllMissions) inventoryResponse.Missions = allMissions;
if (config.unlockAllMissions) {
inventoryResponse.Missions = allMissions;
inventoryResponse.NodeIntrosCompleted.push("TeshinHardModeUnlocked");
}
if (config.unlockAllQuests) inventoryResponse.QuestKeys = allQuestKeys;
if (config.unlockAllShipDecorations) inventoryResponse.ShipDecorations = allShipDecorations;
if (config.unlockAllFlavourItems) inventoryResponse.FlavourItems = allFlavourItems satisfies IFlavourItem[];