feat(import): EvolutionProgress (#930)
All checks were successful
Build / build (18) (push) Successful in 56s
Build / build (20) (push) Successful in 1m19s
Build / build (22) (push) Successful in 38s
Build Docker image / docker (push) Successful in 34s

Closes #929

Reviewed-on: #930
This commit is contained in:
Sainan 2025-02-08 22:22:30 -08:00
parent 90b6d13923
commit 4504b95977

View File

@ -229,6 +229,9 @@ export const importInventory = (db: TInventoryDatabaseDocument, client: Partial<
if (client.FocusUpgrades !== undefined) { if (client.FocusUpgrades !== undefined) {
db.FocusUpgrades = client.FocusUpgrades; db.FocusUpgrades = client.FocusUpgrades;
} }
if (client.EvolutionProgress !== undefined) {
db.EvolutionProgress = client.EvolutionProgress;
}
if (client.InfestedFoundry !== undefined) { if (client.InfestedFoundry !== undefined) {
db.InfestedFoundry = convertInfestedFoundry(client.InfestedFoundry); db.InfestedFoundry = convertInfestedFoundry(client.InfestedFoundry);
} }