Hello! I'm trying to make a new decoration block, similar to oak planks, but it doesn't seem to work in crafting recipes - even when I tag the block with minecraft:planks. Here's my basic script, along with some images where I try to make a crafting table:
StartupEvents.registry('block', event => {
event.create('framed_oak_planks')
.displayName('Framed Oak Planks')
.soundType('wood')
.hardness(2)
.resistance(3)
.tagBlock('minecraft:mineable/axe')
.tagBlock('minecraft:planks')
})
The only thing I noticed is the lack of the "diamond sword" icon on the framed oak item tag, but I don't know what it means. Any help would be appreciated.