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: fix type not matching reality

12743046
Sainan <sainan@calamity.inc>
提交于

代码差异

1 个文件 +2 -2
Modified src/types/inventoryTypes/inventoryTypes.ts +2 -2
@@ -62,7 +62,7 @@ export interface IInventoryDatabase
62 62 InfestedFoundry?: IInfestedFoundryDatabase;
63 63 DialogueHistory?: IDialogueHistoryDatabase;
64 64 KubrowPetEggs?: IKubrowPetEggDatabase[];
65 PendingCoupon: IPendingCouponDatabase;
65 PendingCoupon?: IPendingCouponDatabase;
66 66 }
67 67
68 68 export interface IQuestKeyDatabase {
@@ -320,7 +320,7 @@ export interface IInventoryClient extends IDailyAffiliations, InventoryClientEqu
320 320 CollectibleSeries: ICollectibleSery[];
321 321 LibraryAvailableDailyTaskInfo: ILibraryAvailableDailyTaskInfo;
322 322 HasResetAccount: boolean;
323 PendingCoupon: IPendingCouponClient;
323 PendingCoupon?: IPendingCouponClient;
324 324 Harvestable: boolean;
325 325 DeathSquadable: boolean;
326 326 EndlessXP?: IEndlessXpProgress[];