diff --git a/src/features/armor-optimization/StatsTable.tsx b/src/features/armor-optimization/StatsTable.tsx index f34be0c..a3a0ca5 100644 --- a/src/features/armor-optimization/StatsTable.tsx +++ b/src/features/armor-optimization/StatsTable.tsx @@ -196,7 +196,6 @@ const StatsTable: React.FC = ({ permutations, onPermutationClic for (const [stat, costs] of Object.entries(perm.modsArray)) { for (const cost of costs) { - console.log(cost); const mod = await db.manifestArmorStatModDef .where(stat + 'Mod') .equals(cost) diff --git a/src/store/db.ts b/src/store/db.ts index 76fae5e..b850ead 100644 --- a/src/store/db.ts +++ b/src/store/db.ts @@ -28,7 +28,7 @@ const db = new Dexie('manifestDb') as Dexie & { manifestSubclass: EntityTable; }; -db.version(2).stores({ +db.version(1).stores({ manifestSandboxPerkDef: 'itemHash, name, icon, description', manifestArmorDef: 'itemHash, name, icon, isExotic, class, slot', manifestExoticArmorCollection: 'itemHash, name, icon, class, slot, isOwned, collectibleHash', @@ -37,13 +37,13 @@ db.version(2).stores({ 'itemHash, name, icon, category, perkName, perkDescription, perkIcon, isOwned, unique, collectibleHash', manifestIntrinsicModDef: 'itemHash, name, icon, perks', manifestArmorStatModDef: - 'itemHash, name, icon, category, perkName, perkDescription, perkIcon, isOwned, collectibleHash, mobilityMod, resilienceMod, recoveryMod, discipline, intellect, strength', + 'itemHash, name, icon, category, perkName, perkDescription, perkIcon, isOwned, collectibleHash, mobilityMod, resilienceMod, recoveryMod, disciplineMod, intellectMod, strengthMod', manifestSubclassModDef: 'itemHash, name, icon, category, perkName, perkDescription, perkIcon, isOwned', manifestSubclassAspectsDef: 'itemHash, name, icon, category, perkName, perkDescription, perkIcon, isOwned, energyCapacity', manifestSubclassFragmentsDef: - 'itemHash, name, icon, category, perkName, perkDescription, perkIcon, isOwned, mobilityMod, resilienceMod, recoveryMod, discipline, intellect, strength', + 'itemHash, name, icon, category, perkName, perkDescription, perkIcon, isOwned, mobilityMod, resilienceMod, recoveryMod, disciplineMod, intellectMod, strengthMod', manifestSubclass: 'itemHash, name, icon, highResIcon, screenshot, damageType, class, isOwned', });