diff --git a/src/services/importService.ts b/src/services/importService.ts index 53c26d82..b27275d7 100644 --- a/src/services/importService.ts +++ b/src/services/importService.ts @@ -167,7 +167,7 @@ export const importInventory = (db: TInventoryDatabaseDocument, client: Partial< db[key] = client[key]; } } - for (const key of ["ThemeStyle", "ThemeBackground", "ThemeSounds", "EquippedInstrument"] as const) { + for (const key of ["ThemeStyle", "ThemeBackground", "ThemeSounds", "EquippedInstrument", "FocusAbility"] as const) { if (client[key]) { db[key] = client[key]; }