Finish on Iron furnace
Added Jei support to Iron Furnace
This commit is contained in:
parent
961e821402
commit
90f5d77a41
9 changed files with 493 additions and 6 deletions
|
@ -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");
|
||||
}
|
||||
|
|
|
@ -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"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue