#Create addon How to make mixing with fluid

5 messages · Page 1 of 1 (latest)

lapis pathBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

zealous cove
#
    event.recipes.create.mixing('minecraft:diamond', 'minecraft:coal_block').superheated()
  })```
#

i have something like this

#

how to add fluid to ingridiens

grizzled loom
#

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