fix: add ActiveQuest

This commit is contained in:
Master 2024-06-23 20:25:55 +08:00
parent eb96ee5168
commit 8070c2b55c
2 changed files with 4 additions and 1 deletions

View File

@ -931,7 +931,9 @@ const inventorySchema = new Schema<IInventoryDatabase, InventoryDocumentProps>(
//Zanuka
Harvestable: Boolean,
//Grustag three
DeathSquadable: Boolean
DeathSquadable: Boolean,
//ActiveQuest
ActiveQuest: String
},
{ timestamps: { createdAt: "Created" } }
);

View File

@ -268,6 +268,7 @@ export interface IInventoryResponse {
PendingCoupon: IPendingCoupon;
Harvestable: boolean;
DeathSquadable: boolean;
ActiveQuest: string;
}
export interface IAffiliation {