From 4ccf8de801dc7c4db36384df9db39c85766a0c17 Mon Sep 17 00:00:00 2001 From: nrbdev Date: Thu, 20 Feb 2025 11:43:07 -0500 Subject: [PATCH] add comments --- src/controllers/api/giveStartingGear.ts | 3 ++- src/types/inventoryTypes/inventoryTypes.ts | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/controllers/api/giveStartingGear.ts b/src/controllers/api/giveStartingGear.ts index 14aff5f3..03e44dbb 100644 --- a/src/controllers/api/giveStartingGear.ts +++ b/src/controllers/api/giveStartingGear.ts @@ -44,9 +44,10 @@ export const giveStartingGearController: RequestHandler = async (req, res) => { } } + // Give the Arsenal Segment which is given after the Awakening. (MissionInventoryUpdate doesnt get called so we can't do it there) await addKeyChainItems(inventory, { KeyChain: "/Lotus/Types/Keys/VorsPrize/VorsPrizeQuestKeyChain", - ChainStage: 0 + ChainStage: 0 // /Lotus/Types/Keys/VorsPrize/MissionOne }); addConsumables(inventory, [{ ItemCount: 1, ItemType: "/Lotus/Types/Restoratives/LisetAutoHack" }]); diff --git a/src/types/inventoryTypes/inventoryTypes.ts b/src/types/inventoryTypes/inventoryTypes.ts index e27df725..ef2e826a 100644 --- a/src/types/inventoryTypes/inventoryTypes.ts +++ b/src/types/inventoryTypes/inventoryTypes.ts @@ -914,10 +914,10 @@ export interface IQuestKeyClient extends Omit