Relay working!

This commit is contained in:
Raoul Van den Berge
2016-03-20 16:28:18 +01:00
parent 2dc790edf0
commit e187a2c54d
12 changed files with 134 additions and 3 deletions

View File

@@ -52,6 +52,7 @@ public class CommonProxy
GameRegistry.registerTileEntity(TileDestructor.class, "destructor");
GameRegistry.registerTileEntity(TileConstructor.class, "constructor");
GameRegistry.registerTileEntity(TileStorage.class, "storage");
GameRegistry.registerTileEntity(TileRelay.class, "relay");
GameRegistry.registerBlock(RefinedStorageBlocks.CONTROLLER, ItemBlockController.class, "controller");
GameRegistry.registerBlock(RefinedStorageBlocks.CABLE, "cable");
@@ -67,6 +68,7 @@ public class CommonProxy
GameRegistry.registerBlock(RefinedStorageBlocks.DESTRUCTOR, "destructor");
GameRegistry.registerBlock(RefinedStorageBlocks.CONSTRUCTOR, "constructor");
GameRegistry.registerBlock(RefinedStorageBlocks.STORAGE, ItemBlockStorage.class, "storage");
GameRegistry.registerBlock(RefinedStorageBlocks.RELAY, "relay");
GameRegistry.registerItem(RefinedStorageItems.STORAGE_CELL, "storage_cell");
GameRegistry.registerItem(RefinedStorageItems.WIRELESS_GRID, "wireless_grid");