Started work on the player detector.

This commit is contained in:
Modmuss50 2015-11-18 20:59:08 +00:00
parent 08cbe33f00
commit 2c31b9211c
7 changed files with 88 additions and 0 deletions

View file

@ -63,6 +63,7 @@ public class ModBlocks {
public static Block heatGenerator;
public static Block industrialSawmill;
public static Block chargeBench;
public static Block playerDetector;
public static Block ore;
public static Block storage;
@ -122,6 +123,9 @@ public class ModBlocks {
GameRegistry.registerBlock(chargeBench, "chargebench");
GameRegistry.registerTileEntity(TileChargeBench.class, "TileChargeBench");
playerDetector = new BlockPlayerDetector();
GameRegistry.registerBlock(playerDetector, ItemBlockPlayerDetector.class, "playerDetector");
MachineCasing = new BlockMachineCasing(Material.rock);
GameRegistry.registerBlock(MachineCasing, ItemBlockMachineCasing.class, "machinecasing");
GameRegistry.registerTileEntity(TileMachineCasing.class, "TileMachineCasingTR");