From e1c5965505c18a3c684fb644220a9ae66f6e2528 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Mon, 25 Aug 2014 23:21:03 -0500 Subject: [PATCH] Disable Neighbor updates on client. --- block/networking/BlockCableBus.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/block/networking/BlockCableBus.java b/block/networking/BlockCableBus.java index 649c564b0..e98a4d5fc 100644 --- a/block/networking/BlockCableBus.java +++ b/block/networking/BlockCableBus.java @@ -336,7 +336,8 @@ public class BlockCableBus extends AEBaseBlock implements IRedNetConnection @Override public void onNeighborChange(IBlockAccess w, int x, int y, int z, int tileX, int tileY, int tileZ) { - cb( w, x, y, z ).onNeighborChanged(); + if ( Platform.isServer() ) + cb( w, x, y, z ).onNeighborChanged(); } @Override