Compare commits

...

1 Commits

Author SHA1 Message Date
110cefe874 feat: save LoreFragmentScans 2025-02-20 08:53:43 +01:00
2 changed files with 8 additions and 1 deletions

View File

@ -191,6 +191,11 @@ export const addMissionInventoryUpdates = (
});
break;
}
case "LoreFragmentScans":
value.forEach(x => {
inventory.LoreFragmentScans.push(x);
});
break;
case "SyndicateId": {
inventory.CompletedSyndicates.push(value);
break;

View File

@ -13,7 +13,8 @@ import {
IFusionTreasure,
ICustomMarkers,
IPlayerSkills,
IQuestKeyDatabase
IQuestKeyDatabase,
ILoreFragmentScan
} from "./inventoryTypes/inventoryTypes";
export interface IThemeUpdateRequest {
@ -85,6 +86,7 @@ export type IMissionInventoryUpdateRequest = {
FocusXpIncreases?: number[];
PlayerSkillGains: IPlayerSkills;
CustomMarkers?: ICustomMarkers[];
LoreFragmentScans?: ILoreFragmentScan[];
} & {
[K in TEquipmentKey]?: IEquipmentClient[];
};