Remove overcomplicated powernet

This commit is contained in:
modmuss50 2016-03-02 15:42:45 +00:00
parent e448bd1317
commit 06d23b10b7
10 changed files with 0 additions and 352 deletions

View file

@ -141,7 +141,6 @@ public class ModBlocks {
public static Block rubberPlanks;
public static Block ironFence;
public static Block cable;
public static void init() {
thermalGenerator = new BlockThermalGenerator();
@ -362,10 +361,6 @@ public class ModBlocks {
ironFence = new BlockIronFence();
GameRegistry.registerBlock(ironFence, "ironFence");
cable = new BlockCable();
GameRegistry.registerBlock(cable, "cable");
GameRegistry.registerTileEntity(TileCable.class, "tilecable");
registerOreDict();
Core.logHelper.info("TechReborns Blocks Loaded");
}