diff --git a/tile/networking/TileCableBus.java b/tile/networking/TileCableBus.java index 1f7bb417..c01efc35 100644 --- a/tile/networking/TileCableBus.java +++ b/tile/networking/TileCableBus.java @@ -83,7 +83,10 @@ public class TileCableBus extends AEBaseTile implements AEMultiTile, ICustomColl { super.onReady(); if ( cb.isEmpty() ) - worldObj.destroyBlock( xCoord, yCoord, zCoord, true ); + { + if ( worldObj.getBlockTileEntity( xCoord, yCoord, zCoord ) == this ) + worldObj.destroyBlock( xCoord, yCoord, zCoord, true ); + } else cb.addToWorld(); }