Tech Reborn

Tech Reborn

30M Downloads

Blast furnace recipe added via minetweaker must have 2 input materials

wormzjl opened this issue ยท 4 comments

commented

For example, the folloing expression will work
mods.techreborn.blastFurnace.addRecipe(techreborn:ingot:28, null, techreborn:dust:81, IC2:itemDust:2, 9000, 120, 2500);

And the following will not
mods.techreborn.blastFurnace.addRecipe(techreborn:ingot:28, null, techreborn:dust:81, null, 9000, 120, 2500);

Is my grammar wrong or there is a bug?

commented

It looks like a bug

commented

It was working with:

    mods.techreborn.blastFurnace.addRecipe(<techreborn:ingot:28>, null, <techreborn:dust:81>, null, 9000, 120, 2500);
commented

nice, but it seems that you repeated this 2 times in the commit :P
PlateCuttingMachineRecipe r = new PlateCuttingMachineRecipe(oInput1, MinetweakerCompat.toStack(output), ticktime, euTick);
PlateCuttingMachineRecipe r = new PlateCuttingMachineRecipe(oInput1, MinetweakerCompat.toStack(output), ticktime, euTick);

commented

I know, I forgot to saved, it was fixed in the next commit cb6551c