From 77dcf6c5cf29123a74ee2e171edf64ce99a21ef9 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Thu, 19 Jun 2014 01:35:46 -0500 Subject: [PATCH] Fix Storage bus when tiles change without blocks. --- block/networking/BlockCableBus.java | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) 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)