XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

feat(import): loc pins (#1297)

Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1297

5277f7cc
Sainan <sainan@calamity.inc>
提交于

代码差异

1 个文件 +3 -0
Modified src/services/importService.ts +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 => {