add comments
All checks were successful
Build / build (18) (pull_request) Successful in 38s
Build / build (20) (pull_request) Successful in 1m2s
Build / build (22) (pull_request) Successful in 1m12s

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, {
KeyChain: "/Lotus/Types/Keys/VorsPrize/VorsPrizeQuestKeyChain",
ChainStage: 0
ChainStage: 0 // /Lotus/Types/Keys/VorsPrize/MissionOne
});
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 {
c?: number;
i?: boolean;
m?: boolean;
b?: any[];
c?: number; // Completed?
i?: boolean; // keyChainItemsGiven?
m?: boolean; // keyChainMessage[Given](Sent)?
b?: any[]; // unknown/unused
}
export interface IRawUpgrade {