I made two fluids using Kubejs, molten zinc and molten brass, with the intention of using some Embers Rekindled machines to produce/manipulate them. I was able to add them to recipes as outputs, but it seems whenever I try to include them as an input in Embers the recipe doesn't function. The two examples I have are making molten brass in the Embers mixer centrifuge and making brass ingots in the Embers stamper. A partial recipe shows up in JEI for the stamping recipe, missing the fluid.
A functioning stamping recipe from Embers and my brass recipe should be attached.
"type": "embers:mixing",
"conditions": [
{
"type": "forge:not",
"value": {
"type": "forge:tag_empty",
"tag": "forge:ingots/brass"
}
}
],
"inputs": [
{
"amount": 2,
"tag": "forge:molten_copper"
},
{
"amount": 2,
"tag": "kubejs:molten_zinc"
}
],
"output": {
"amount": 4,
"fluid": "kubejs:molten_brass"
}
}) ```
``` event.custom({
"type": "embers:stamping",
"conditions": [
{
"type": "forge:not",
"value": {
"type": "forge:tag_empty",
"tag": "forge:ingots/brass"
}
}
],
"fluid": {
"amount": 90,
"tag": "kubejs:molten_brass"
},
"output": {
"tag": "forge:ingots/brass"
},
"stamp": {
"item": "embers:ingot_stamp"
}
}) ```
Any help is greatly appreciated!