Posted December 2, 20213 yr Hi, I wanted to add a smelting recipe, where you would put a filled bottle in the ingredient slot and when the smelting is complete you would receive an item in the result slot and an empty bottle would remain in the ingredient slot, however I couldn't find any good resources elsewhere on how to add a recipe like this.
December 2, 20213 yr Author What should you set the Ingredient parameter of SimpleCookingRecipeBuilder.cooking() to?
December 3, 20213 yr in you item class add code: @Override public ItemStack getContainerItem(ItemStack itemStack) { return itemStack.copy(); } @Override public boolean hasContainerItem(ItemStack stack) { return true; }
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.