StartupEvents.registry('block', event => {
event.create('andesite_machine')
.displayName('Andesite Machine')
.material('wood')
.hardness(0.8)
.resistance(1.5)
.tagBlock('mineable/pickaxe')
.requiresTool(false)
})
StartupEvents.registry('block', event => {
event.create('copper_machine')
.displayName('Copper Machine')
.material('metal')
.hardness(0.8)
.resistance(1.5)
.tagBlock('mineable/pickaxe')
.requiresTool(false)
})
why is the andesite machine block being added but not the copper machine?