From faeebe8e60f272c5e4795357e2c66823a6d3db5d Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Wed, 1 Jan 2014 03:04:03 -0600 Subject: [PATCH] Before you decide to break yourself you might want to make sure your the correct tile... --- tile/networking/TileCableBus.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tile/networking/TileCableBus.java b/tile/networking/TileCableBus.java index 1f7bb4171..c01efc35a 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(); }