diff --git a/src/app/components/ItemTooltip.tsx b/src/app/components/ItemTooltip.tsx index f327073e..8726e0dc 100644 --- a/src/app/components/ItemTooltip.tsx +++ b/src/app/components/ItemTooltip.tsx @@ -252,6 +252,8 @@ function AttributeModifiersTooltip({ data }: { data: NbtTag | undefined }) { let first = true return modifiers.map((e) => { if (!e.isCompound()) return + const display = e.getCompound('display').getString('type') + if (display == 'hidden') return const slot = e.has('slot') ? e.getString('slot') : 'any' if (slot !== group) return const wasFirst = first