#modded fluids for create sequenced recipe
15 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
event.recipes.createFilling(
"minecraft:diamond", //result
[
"minecraft:diamond_block", //input item
Fluid.of("create:chocolate", 100) //input fluid
]
)
So it should be in your case
event.recipes.createFilling(
'kubejs:zaza', //result
[
'kubejs:zaza', //input item
Fluid.of("createfood:sugar_cane_juice", 100) //input fluid
]
)
no, that's not the issue
event.recipes.createFilling('kubejs:zaza', ['kubejs:zaza', Fluid.of('sugar_cane_juice', 100)]),
this rn doesnt work
wait
forgot i remvoed the
mod id
😭
Fluid.of('createfood:sugar_cane_juice)', 100)
The issue with it is an extra ) in the fluid id.
ty