diff --git a/block/networking/BlockCableBus.java b/block/networking/BlockCableBus.java index e000b679..41d12318 100644 --- a/block/networking/BlockCableBus.java +++ b/block/networking/BlockCableBus.java @@ -318,12 +318,18 @@ public class BlockCableBus extends AEBaseBlock { return cb( w, x, y, z ).isSolidOnSide( side ); } - - @Override - public void onNeighborBlockChange(World w, int x, int y, int z, Block meh) - { - cb( w, x, y, z ).onNeighborChanged(); - } + + @Override + public void onNeighborBlockChange(World w, int x, int y, int z, Block meh) + { + cb( w, x, y, z ).onNeighborChanged(); + } + + @Override + public void onNeighborChange(IBlockAccess w, int x, int y, int z, int tileX, int tileY, int tileZ) + { + cb( w, x, y, z ).onNeighborChanged(); + } @Override public Item getItemDropped(int i, Random r, int k)