[1.18] Craft Processor, Same Item in Multiple Slots Bug
bobrob2004 opened this issue ยท 1 comments
There's a bug when a machine has the craft processor and you have the same item in multiple slots. It'll craft the item with only one of the input items. I'm also using Kubejs. So for example, I have the recipe:
event.recipes.custommachinery.custom_craft("calculator:basic_calculator", Item.of("minecraft:coal", 2))
.requireItem(Item.of("minecraft:charcoal", "input1"))
.requireItem(Item.of("minecraft:charcoal", "input2"))
It'll craft the coal with only one charcoal.