Blast furnace recipe added via minetweaker must have 2 input materials
wormzjl opened this issue ยท 4 comments
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?
It was working with:
mods.techreborn.blastFurnace.addRecipe(<techreborn:ingot:28>, null, <techreborn:dust:81>, null, 9000, 120, 2500);
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);
I know, I forgot to saved, it was fixed in the next commit cb6551c