When using this Script:
ServerEvents.recipes(event => {
event.custom({
"type": "create:mixing",
"heat_requirement": "lowheated",
"ingredients": [
{
"item": "minecraft:red_sand"
},
{
"item": "minecraft:rotten_flesh"
},
{
"type": "fluid_stack",
"amount": 1000,
"fluid": "minecraft:lava"
}
],
"results": [
{
"item": {
"id": "minecraft:soul_sand"
}
}
]
})
})```
It keeps giving me this error:
[16:25:15] [ERROR] ! server_scripts:create.js#63: Failed to create custom recipe from json {"type":"create:mixing","heat_requirement":"lowheated","ingredients":[{"item":"minecraft:red_sand"},{"item":"minecraft:rotten_flesh"},{"type":"fluid_stack","amount":1000,"fluid":"minecraft:lava"}],"results":[{"item":{"id":"minecraft:soul_sand"}}]}: Failed to read required component 'results: either<fluid_stack, create:processing_output>[]' - java.lang.IllegalStateException: Failed to parse either. First: No key amount in MapLike[{"item":{"id":"minecraft:soul_sand"}}]; No key id in MapLike[{"item":{"id":"minecraft:soul_sand"}}]; Second: No key id in MapLike[{"item":{"id":"minecraft:soul_sand"}}]
What am i doing wrong?
I got both KubeJS and CreateJS installed (aswell as "create lowheated", for this recipe)