From 3d2555a14f17ddb20a0a7f99934276ee19f5d84c Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Thu, 17 Jul 2014 22:45:21 -0500 Subject: [PATCH] One more test to be sure. --- me/cluster/implementations/CraftingCPUCluster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/me/cluster/implementations/CraftingCPUCluster.java b/me/cluster/implementations/CraftingCPUCluster.java index da6db177d..78d7ca8ef 100644 --- a/me/cluster/implementations/CraftingCPUCluster.java +++ b/me/cluster/implementations/CraftingCPUCluster.java @@ -728,7 +728,7 @@ public class CraftingCPUCluster implements IAECluster, ICraftingCPU if ( !(job instanceof CraftingJob) ) return null; - if ( isBusy() || getAvailableStorage() < job.getByteTotal() ) + if ( isBusy() || !isActive() || getAvailableStorage() < job.getByteTotal() ) return null; IStorageGrid sg = g.getCache( IStorageGrid.class );