I made 2 custom blocks that use the vanilla minecraft template anvil model and for some reason the block below it is hidden. Does anyone know how to deal with this issue?
StartupEvents.registry('block', event => {
event.create("copper_anvil")
.requiresTool(true)
.hardness(5)
.resistance(5)
.fullBlock(false)
event.create("iron_anvil")
.requiresTool(true)
.hardness(5)
.resistance(5)
.fullBlock(false)
})
