GroovyScript

GroovyScript

277k Downloads

IE press doesn't properly set input item count if the input item is oredicted in

Wizzerinus opened this issue · 0 comments

commented

So this script works properly:

mods.immersiveengineering.metal_press.recipeBuilder()
    .mold(item("immersiveengineering:mold", 1))
    .input(item("minecraft:diamond") * 4)
    .output(item("thermalfoundation:material", 26))
    .register()

image

And this script doesn't:

mods.immersiveengineering.metal_press.recipeBuilder()
    .mold(item("immersiveengineering:mold", 1))
    .input(ore("gemDiamond") * 4)
    .output(item("thermalfoundation:material", 26))
    .register()

image