This commit is contained in:
modmuss50 2016-03-13 11:50:46 +00:00
parent 3a99ebcf02
commit 05ee9f30f4
7 changed files with 254 additions and 10 deletions

View file

@ -131,6 +131,7 @@ public class ModBlocks {
public static Block machineframe;
public static Block reinforcedglass;
public static Block ironFurnace;
public static Block nuke;
public static Block rubberLog;
public static Block rubberLeaves;
@ -368,6 +369,10 @@ public class ModBlocks {
ironFurnace = new BlockIronFurnace();
GameRegistry.registerBlock(ironFurnace, "ironfurnace");
GameRegistry.registerTileEntity(TileIronFurnace.class, "TileIronFurnaceTR");
nuke = new BlockNuke();
GameRegistry.registerBlock(nuke, "nuke");
registerOreDict();
Core.logHelper.info("TechReborns Blocks Loaded");
}