So I'm trying to make a mixing recipe as a test. However, after following way too many tutorials, all saying smth different, my recipe doesn't work, doesn't give me an error and doesn't show up in JEI. The other recipe in the file does work properly, and I tried following the mod's wiki, but that resulted in an "constructors not found" error and whilst trying to troubleshoot that via the discord (so by adding the "addCreateRecipeHandler(event)" script into my script as instructed) I got an error regarding the new lines. This is my script:
ServerEvents.recipes(event => {
event.shaped('create:blaze_burner', [
'ABA',
' C ',
'ADA'
], {
C: 'knightlib:great_essence',
A: 'minecraft:blaze_rod',
D: 'create:empty_blaze_burner',
B: 'minecraft:lava_bucket'
})
event.custom({
"type": "create:mixing",
"results": [
{
"item": "create:blaze_burner", amount: 1
}
],
ïngredients: [
{
"item": "knightlib:great_essence", amount: 1
},
{
"item": "minecraft:blaze_rod", amount: 4
},
{
"item": "create:empty_blaze_burner", amount: 1
},
{
"fluid": "minecraft:lava", amount: 500
}
]})});
Does anyone know how I can solve this?
I'm using no addons except for ProbeJS and Ponder for CubeJS.
Thanks in advance!