diff --git a/app/imports/ui/creature/character/characterSheetTabs/InventoryTab.vue b/app/imports/ui/creature/character/characterSheetTabs/InventoryTab.vue
index 2b75908d..79f7d833 100644
--- a/app/imports/ui/creature/character/characterSheetTabs/InventoryTab.vue
+++ b/app/imports/ui/creature/character/characterSheetTabs/InventoryTab.vue
@@ -31,12 +31,12 @@
-
+
$vuetify.icons.spell
@@ -47,7 +47,7 @@
- {{ creature.denormalizedStats.itemsAttuned }}
+ {{ creature.variables.itemsAttuned.value }}
@@ -140,7 +140,7 @@ export default {
creature(){
return Creatures.findOne(this.creatureId, {fields: {
color: 1,
- denormalizedStats: 1,
+ variables: 1,
}});
},
containersWithoutAncestorContainers(){
@@ -210,7 +210,9 @@ export default {
},
weightCarried(){
return stripFloatingPointOddities(
- this.creature.denormalizedStats.weightCarried || 0
+ this.creature.variables &&
+ this.creature.variables.weightCarried &&
+ this.creature.variables.weightCarried.value || 0
);
},
},