Incorrect Blast furnace recipe / Galena cooking into Iron
HarrisFauntleroy opened this issue ยท 4 comments
This is the problem recipe I believe, only Iron and Pyrite ask for calcite to process, yet there is no in game blast furnace recipe for Pyrite. Somehow Pyrite and Galena are being mixed up.
RecipeHandler.addRecipe(new BlastFurnaceRecipe(BlockOre.getOreByName("pyrite"), ItemDusts.getDustByName("calcite"), new ItemStack(Items.iron_ingot, 2), ItemDusts.getDustByName("darkAshes"), 140, 120, 15000));
The code also look fine for this:
RecipeHandler.addRecipe(new BlastFurnaceRecipe(ItemDusts.getDustByName("galena", 2), null, ItemIngots.getIngotByName("silver"), ItemIngots.getIngotByName("lead"), 80, 120, 1500));
this is a issue with https://github.com/TechReborn/TechReborn/blob/master/src/main/java/techreborn/blocks/BlockOre.java#L42 we use itemBlocks for the ores so this wont work
@modmuss50 sorry but I dont have any free time atm so I cant work on this atm