From 3f91868d5ec848fc4ced2454076084debf381386 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Wed, 10 Sep 2014 21:43:16 -0500 Subject: [PATCH] Bug: #1057 - "Automatic" CPU selection is picking the wrong crafting CPU --- me/cache/CraftingGridCache.java | 1 - 1 file changed, 1 deletion(-) diff --git a/me/cache/CraftingGridCache.java b/me/cache/CraftingGridCache.java index a6459cb57..0e21ebc2a 100644 --- a/me/cache/CraftingGridCache.java +++ b/me/cache/CraftingGridCache.java @@ -438,7 +438,6 @@ public class CraftingGridCache implements ICraftingGrid, ICraftingProviderHelper if ( cpu.isActive() && !cpu.isBusy() && cpu.getAvailableStorage() >= job.getByteTotal() ) { validCpusClusters.add( cpu ); - break; } }