temp fix: Add XP for SpaceSuits (#233)

This commit is contained in:
WhoTao 2024-05-28 14:59:20 +03:00 committed by GitHub
parent 3236263399
commit a0b293685d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -321,7 +321,13 @@ const GenericItemSchema = new Schema<IGenericItem>(
{
ItemType: String,
Configs: [ItemConfigSchema],
UpgradeVer: Number //this is probably just __v
UpgradeVer: Number,
XP: Number,
Features: Number,
Polarity: [polaritySchema],
Polarized: Number,
ModSlotPurchases: Number,
CustomizationSlotPurchases: Number
},
{ id: false }
);