i can't break redstone ore with my pickaxe (/give @p minecraft:iron_pickaxe 1 0 {CanDestroy:["minecraft:redstone_ore"]}
i think it is only affected with redstone ore
Attachments
Comments 3
"redstone_ore" changes to "lit_redstone_ore" when mined. You have to specify that as well:
/give @p minecraft:iron_pickaxe 1 0 {CanDestroy:["minecraft:redstone_ore","minecraft:lit_redstone_ore"]}
redstone ore exists into 2 diffrent blocks, redstone_ore and lit_redstone_ore, since it changes to lit upon interaction it cannot be mined because you didn't specify lit_redstone_ore, specify it in your CanDestroy tag and it'll work
WAI