From 0146aa6422a593cf064f8f581b08100e1b8de16b Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Mon, 28 Jul 2014 21:53:43 -0500 Subject: [PATCH] Fixed Fixed Bug: #0744 - Client side logic on storage bus being called. --- parts/misc/PartStorageBus.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parts/misc/PartStorageBus.java b/parts/misc/PartStorageBus.java index 167778bd..7abbad2f 100644 --- a/parts/misc/PartStorageBus.java +++ b/parts/misc/PartStorageBus.java @@ -152,7 +152,7 @@ public class PartStorageBus extends PartUpgradeable implements IGridTickable, IC private void resetCache(boolean fullReset) { - if ( host == null || host.getTile() == null || host.getTile().getWorldObj() == null ) + if ( host == null || host.getTile() == null || host.getTile().getWorldObj() == null || host.getTile().getWorldObj().isRemote ) return; IMEInventory in = getInternalHandler();