apply ai hint
This commit is contained in:
parent
b543392f34
commit
7fc60e70f2
@ -933,7 +933,7 @@ const inventorySchema = new Schema<IInventoryDatabase, InventoryDocumentProps>(
|
|||||||
EvolutionProgress: { type: [evolutionProgressSchema], default: undefined },
|
EvolutionProgress: { type: [evolutionProgressSchema], default: undefined },
|
||||||
|
|
||||||
//https://warframe.fandom.com/wiki/Loc-Pin
|
//https://warframe.fandom.com/wiki/Loc-Pin
|
||||||
CustomMarkers: [CustomMarkersSchema],
|
CustomMarkers: { type: [CustomMarkersSchema], default: undefined },
|
||||||
|
|
||||||
//Unknown and system
|
//Unknown and system
|
||||||
DuviriInfo: DuviriInfoSchema,
|
DuviriInfo: DuviriInfoSchema,
|
||||||
|
@ -794,9 +794,11 @@ export const missionInventoryUpdate = async (data: IMissionInventoryUpdateReques
|
|||||||
: undefined;
|
: undefined;
|
||||||
if (map) {
|
if (map) {
|
||||||
map.markerInfos = markers.markerInfos;
|
map.markerInfos = markers.markerInfos;
|
||||||
|
inventory.markModified("CustomMarkers");
|
||||||
} else {
|
} else {
|
||||||
inventory.CustomMarkers ??= [];
|
inventory.CustomMarkers ??= [];
|
||||||
inventory.CustomMarkers.push(markers);
|
inventory.CustomMarkers.push(markers);
|
||||||
|
inventory.markModified("CustomMarkers");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user