From 92e12a6d034d9b9e838123616644934fbfdecbd1 Mon Sep 17 00:00:00 2001 From: Sainan Date: Sun, 16 Jun 2024 23:57:30 +0200 Subject: [PATCH] improve: completeAllQuests (#311) --- src/controllers/api/inventoryController.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/controllers/api/inventoryController.ts b/src/controllers/api/inventoryController.ts index 40b8ba7c..6d12b5f7 100644 --- a/src/controllers/api/inventoryController.ts +++ b/src/controllers/api/inventoryController.ts @@ -69,6 +69,11 @@ const inventoryController: RequestHandler = async (request: Request, response: R } ]; } + + inventoryResponse.ArchwingEnabled = true; + + // Skip "Watch The Maker" + inventoryResponse.NodeIntrosCompleted.push("/Lotus/Levels/Cinematics/NewWarIntro/NewWarStageTwo.level"); } if (config.unlockAllShipDecorations) inventoryResponse.ShipDecorations = allShipDecorations;