Create Deco

Create Deco

14M Downloads

All bars and bars overlays are missing the tag 'minecraft:mineable/pickaxe'

Arthur-UBdx opened this issue ยท 0 comments

commented

All bars will break at the same speed whatever tool you use, simply because the tag "minecraft:mineable/pickaxe" is missing.
A temporary fix can be added with kubejs.

kubejs/server_scripts/tags.js:

ServerEvents.tags('block', event => {
    event.add('minecraft:mineable/pickaxe', [
        'createdeco:industrial_iron_bars',
        'createdeco:industrial_iron_bars_overlay',
        'createdeco:andesite_bars',
        'createdeco:andesite_bars_overlay',
        'createdeco:brass_bars',
        'createdeco:brass_bars_overlay',
        'createdeco:copper_bars',
        'createdeco:copper_bars_overlay',
        'createdeco:zinc_bars',
        'createdeco:zinc_bars_overlay',
    ])
})