import CurrentLoadOutIds

This commit is contained in:
Sainan 2025-01-20 08:53:21 +01:00
parent 58156b0457
commit e910f2752f

View File

@ -168,6 +168,9 @@ export const importInventory = (db: TInventoryDatabaseDocument, client: Partial<
db[key] = client[key];
}
}
if (client.CurrentLoadOutIds) {
db.CurrentLoadOutIds = client.CurrentLoadOutIds;
}
if (client.InfestedFoundry) {
db.InfestedFoundry = convertInfestedFoundry(client.InfestedFoundry);
}