返回提交历史
Modified
src/services/importService.ts
+3
-0
XFEstudio/XFESpaceNinjaServer
feat(import): loc pins (#1297)
Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1297
5277f7cc
代码差异
1 个文件
+3
-0
@@ -239,6 +239,9 @@ export const importInventory = (db: TInventoryDatabaseDocument, client: Partial<
239
239
if (client.DialogueHistory !== undefined) {
240
240
db.DialogueHistory = convertDialogueHistory(client.DialogueHistory);
241
241
}
242
if (client.CustomMarkers !== undefined) {
243
db.CustomMarkers = client.CustomMarkers;
244
}
242
245
};
243
246
244
247
const convertLoadOutConfig = (client: ILoadoutConfigClient): ILoadoutConfigDatabase => {