We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c089d70 commit 3908442Copy full SHA for 3908442
src/app/components/ItemTooltip.tsx
@@ -252,6 +252,8 @@ function AttributeModifiersTooltip({ data }: { data: NbtTag | undefined }) {
252
let first = true
253
return modifiers.map((e) => {
254
if (!e.isCompound()) return
255
+ const display = e.getCompound('display').getString('type')
256
+ if (display == 'hidden') return
257
const slot = e.has('slot') ? e.getString('slot') : 'any'
258
if (slot !== group) return
259
const wasFirst = first
0 commit comments