Lets say as a test, i want to turn iron plates into dirt. What would code for that look like? I'm not getting an error message, but the recipe is not in JEI nor does it work in testing. My current code is:
ServerEvents.recipes(event => {
event.custom({
"type":"createaddition:rolling",
"input": {
"tag": "forge:plates/iron"
},
"result": {
"item": "minecraft:dirt",
"count": 2
}
})
}) //END

