add comments

This commit is contained in:
nrbdev 2025-02-20 11:43:07 -05:00
parent 605905c880
commit 6f388128ae
2 changed files with 6 additions and 5 deletions

View File

@ -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, { await addKeyChainItems(inventory, {
KeyChain: "/Lotus/Types/Keys/VorsPrize/VorsPrizeQuestKeyChain", KeyChain: "/Lotus/Types/Keys/VorsPrize/VorsPrizeQuestKeyChain",
ChainStage: 0 ChainStage: 0 // /Lotus/Types/Keys/VorsPrize/MissionOne
}); });
addConsumables(inventory, [{ ItemCount: 1, ItemType: "/Lotus/Types/Restoratives/LisetAutoHack" }]); addConsumables(inventory, [{ ItemCount: 1, ItemType: "/Lotus/Types/Restoratives/LisetAutoHack" }]);

View File

@ -914,10 +914,10 @@ export interface IQuestKeyClient extends Omit<IQuestKeyDatabase, "CompletionDate
} }
export interface IQuestStage { export interface IQuestStage {
c?: number; c?: number; // Completed?
i?: boolean; i?: boolean; // keyChainItemsGiven?
m?: boolean; m?: boolean; // keyChainMessage[Given](Sent)?
b?: any[]; b?: any[]; // unknown/unused
} }
export interface IRawUpgrade { export interface IRawUpgrade {