#Create- Prevent deployer from consuming held item

6 messages · Page 1 of 1 (latest)

bold stump
#

I want to create deployer recipes where the item being used by the deployer is not consumed, so it will be able to consistently hold it and keep using it without adding new items.

Making a recipe as it is has the deployed item be destroyed from usage, which I don't want.

mortal oxideBOT
#

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

carmine dove
#

use .keepHeldItem()

short kelp
#

gotta try to give more context with your answers
yes if you're using kubejs create to help with recipe creation you just need to tack it onto the end of your recipe

event.recipes.create.Deploying('some recipe stuff here').keepHeldItem()

if you we doing json based recipe addition through event.custom you would want to add keepHeldItem:true to your recipe json

bold stump
#

And keepHeldItem() works, thanks y'all!