diff --git a/container/implementations/ContainerNetworkStatus.java b/container/implementations/ContainerNetworkStatus.java index d5d5d6266..bd755ce80 100644 --- a/container/implementations/ContainerNetworkStatus.java +++ b/container/implementations/ContainerNetworkStatus.java @@ -41,7 +41,7 @@ public class ContainerNetworkStatus extends AEBaseContainer findNode( host, d ); } - if ( network == null ) + if ( network == null && Platform.isServer() ) ip.player.closeScreen(); } @@ -55,7 +55,7 @@ public class ContainerNetworkStatus extends AEBaseContainer } } - int delay = 0; + int delay = 40; public long avgAddition; public long powerUsage; @@ -91,7 +91,7 @@ public class ContainerNetworkStatus extends AEBaseContainer public void detectAndSendChanges() { delay++; - if ( Platform.isServer() && delay > 1 && network != null ) + if ( Platform.isServer() && delay > 15 && network != null ) { delay = 0;