Finish on Iron furnace

Added Jei support to Iron Furnace
This commit is contained in:
gigabit101 2016-03-06 19:59:39 +00:00
parent 961e821402
commit 90f5d77a41
9 changed files with 493 additions and 6 deletions

View file

@ -368,7 +368,7 @@ public class ModBlocks {
ironFurnace = new BlockIronFurnace();
GameRegistry.registerBlock(ironFurnace, "ironfurnace");
GameRegistry.registerTileEntity(TileIronFurnace.class, "TileIronFurnaceTR");
registerOreDict();
Core.logHelper.info("TechReborns Blocks Loaded");
}

View file

@ -198,6 +198,15 @@ public class ModRecipes {
'A', "ingot" + name.substring(0, 1).toUpperCase() + name.substring(1));
}
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.ironFurnace),
"III", "IXI", "III",
'I', "ingotIron");
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.ironFurnace),
"XIX", "IXI", "IFI",
'I', "ingotIron",
'F', Blocks.furnace);
CraftingHelper.addShapedOreRecipe(ItemParts.getPartByName("electronicCircuit"),
"WWW", "SRS", "WWW",
'R', ItemIngots.getIngotByName("refinediron"),