Start on Iron furnace

This commit is contained in:
gigabit101 2016-03-06 15:58:34 +00:00
parent a84075ff69
commit 961e821402
3 changed files with 67 additions and 1 deletions

View file

@ -135,6 +135,7 @@ public class ModBlocks {
public static Block storage2;
public static Block machineframe;
public static Block reinforcedglass;
public static Block ironFurnace;
public static Block rubberLog;
public static Block rubberLeaves;
@ -364,6 +365,9 @@ public class ModBlocks {
reinforcedglass = new BlockReinforcedGlass(Material.glass);
GameRegistry.registerBlock(reinforcedglass, "reinforcedglass");
ironFurnace = new BlockIronFurnace();
GameRegistry.registerBlock(ironFurnace, "ironfurnace");
registerOreDict();
Core.logHelper.info("TechReborns Blocks Loaded");