normally you can craft planks from every type of log but with this code i can just craft them from stripped logs
- pic is with the script where theres no log tag
- pic is without the script (the star means tag)
event.forEachRecipe({type: 'minecraft:crafting_shapeless', input: '#minecraft:logs', output: '#minecraft:planks'}, recipe => {
let input = recipe.originalRecipeIngredients
let output = recipe.originalRecipeResult
event.shapeless(Item.of(output, 2), [Item.of(input[0])]).id(recipe.getOrCreateId())
})
