Hey!
I'm trying to remove all plank blocks from the chipped mod from the 'minecraft:planks' tag, I've tried a lot of scripts but I can't seem to think of any that would work.
This is what I'm trying right now:
onEvent('tags.items', event => {
Item.of("@chipped").stacks.forEach((plank) => {
event.remove('minecraft:planks', plank.id);
});
})
I've also tried:
- removing the tags from the blocks completely using
event.removeAllTagsFrombut that didn't seem to work as well. - adding an IF Statement to make sure it's a plank block specifically




