When using event.custom to add a custom recipe for Create, the code runs without errors and reports a created recipe, but I cannot see the recipe in my recipe viewer, nor does it work in-world.
ServerEvents.recipes(event => {
const recipe = event.custom({
"type": "create:mixing",
"ingredients": [
{
"item": "minecraft:andesite"
},
{
"tag": "forge:nuggets/gold"
}
],
"results": [
{
"item": "create:andesite_alloy"
}
]
})
console.log(recipe)
})
```js