Fixed up the Tile Entity mess a bit, still need to look at the CableBus stuff a bit though.

This commit is contained in:
Gunther De Wachter
2017-06-30 17:22:06 +02:00
parent 10e050c35b
commit 49a6df5bc7
44 changed files with 167 additions and 77 deletions
@@ -37,7 +37,6 @@ public class BlockChunkloader extends AEBaseTileBlock implements LoadingCallback
public BlockChunkloader()
{
super( Material.IRON );
this.setTileEntity( TileChunkLoader.class );
ForgeChunkManager.setForcedChunkLoadingCallback( AppEng.instance(), this );
}
@@ -38,7 +38,6 @@ public class BlockCubeGenerator extends AEBaseTileBlock
public BlockCubeGenerator()
{
super( Material.IRON );
this.setTileEntity( TileCubeGenerator.class );
}
@Override
@@ -30,7 +30,6 @@ public class BlockItemGen extends AEBaseTileBlock
public BlockItemGen()
{
super( Material.IRON );
this.setTileEntity( TileItemGen.class );
}
}
@@ -38,7 +38,6 @@ public class BlockPhantomNode extends AEBaseTileBlock
public BlockPhantomNode()
{
super( Material.IRON );
this.setTileEntity( TilePhantomNode.class );
}
@Override