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

SpaceNinjaServer

A simple server for a small space ninja game

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

XFEstudio/SpaceNinjaServer

chore: some notes in inventoryTypes

05fd3c4c
Sainan <sainan@calamity.inc>
提交于

代码差异

1 个文件 +4 -1
Modified src/types/inventoryTypes/inventoryTypes.ts +4 -1
@@ -102,7 +102,8 @@ export type TSolarMapRegion =
102 102 | "Uranus"
103 103 | "Venus"
104 104 | "Void"
105 | "SolarMapDeimosName";
105 | "SolarMapDeimosName"
106 | "1999MapName";
106 107
107 108 //TODO: perhaps split response and database into their own files
108 109
@@ -727,6 +728,8 @@ export interface IPendingRecipe {
727 728 ItemType: string;
728 729 CompletionDate: Date;
729 730 ItemId: IOid;
731 TargetItemId?: string; // likely related to liches
732 TargetFingerprint?: string; // likely related to liches
730 733 }
731 734
732 735 export interface IPendingTrade {