I am trying to change the plaster recipe from first aid, but idk why it isnt working. Any idea why?
//onEvent('recipes', event => {
ServerEvents.recipes(event => {
//Remove by recipe ID
[
'minecraft:golden_apple'
'firstaid:plaster'
].forEach((recipeID) => event.remove({id: recipeID}));
})
ServerEvents.recipes(event => {
//Add recipe
event.shaped('firstaid:plaster', [
' A',
'A '
],{
A: 'minecraft:wool',
})
})