Affiliations

This commit is contained in:
Sainan 2025-01-20 09:44:58 +01:00
parent 2baeae4b06
commit 4a78999aec

View File

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