Hello, I have problem with changing recipes for IC2 blast furnace.
No matter what I define for output, for example
customitems:transfer_ladle-pig_iron = customitems:transfer_ladle-steel
always I will got refined ingot and slag instead of output specimen (however it accept input as redefined).
I'm using industrialcraft-2-2.2.826-experimental.
Is it possible to fix such issue?
blast furnace customisation is not working properly
-
-
I'll look into it.
-
For sake of supplement, NEI show properly both input and output custom results, but working blast furnace give output unchanged.
-
Can you post the exact line you added to the blast furnace config file?
-
Can you post the exact line you added to the blast furnace config file?Line was exactly like above, but I now made some test with vanilla items, for example replaced refined iron with gold:
and same result - there is refined ingot and slag instead of gold ingot.
I tried also
and still refined ingot is produced, despite of what is defined in blast_furnace.ini and shown in NEI. -
-
I've been trying to stay out of this thread, but I looked at decompiled code via jd-gui, and I can tell that you're barking up the wrong tree. Changing the config won't help, because in 2.2.826, the outputs of the blast furnace are hard-coded.
In ic2.core.block.machine.tileentity.TileEntityBlastFurnace, method work(), I see the following relevant lines:
Codeif (this.progress >= this.maxprogress) { this.outputSlot.add(Ic2Items.advIronIngot); this.slagOutputSlot.add(Ic2Items.slag); this.progress = 0; return false; }
The builds for Minecraft 1.8.9 and newer like they will honor the configured outputs, though.
-
Try #827
-
Thanks for support, it is working correctly now.