#Create addon How to make mixing with fluid
5 messages · Page 1 of 1 (latest)
event.recipes.create.mixing('minecraft:diamond', 'minecraft:coal_block').superheated()
})```
i have something like this
how to add fluid to ingridiens
for fluids you'd need to use Fluid.of()
ServerEvents.recipes(event => {
event.recipes.create.mixing('minecraft:diamond', ['minecraft:coal_block', Fluid.of('minecraft:water', 1000)]).superheated()
})
also notice how i am using an array for the ingredients