One more test to be sure.

This commit is contained in:
AlgorithmX2
2014-07-17 22:45:21 -05:00
parent c834cfb02a
commit 3d2555a14f
@@ -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 );