Create Deco

Create Deco

16M Downloads

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

Arthur-UBdx opened this issue ยท 2 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',
    ])
})
commented

This script solution worked for me. ๐Ÿ‘
I am using kubejs for my server already so it was simple.

commented

urgh, seriously? makes it so annoying to deal with bars in survival. glad mining levels are data driven so you can fix it with something like kube now..