EquippedGear & EquippedEmotes

This commit is contained in:
Sainan 2025-01-20 09:44:17 +01:00
parent b0f6beee7d
commit 2baeae4b06

View File

@ -172,6 +172,11 @@ export const importInventory = (db: TInventoryDatabaseDocument, client: Partial<
db[key] = client[key];
}
}
for (const key of ["EquippedGear", "EquippedEmotes"] as const) {
if (client[key]) {
db[key] = client[key];
}
}
if (client.CurrentLoadOutIds) {
db.CurrentLoadOutIds = client.CurrentLoadOutIds;
}