From 2d0f5333b7f336bc767210ccb685dabbf66f4323 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Tue, 15 Jul 2014 21:19:29 -0500 Subject: [PATCH] Fixed Bug: #0646 - Crafting CPU not finishing wood projects, because mixing wood --- me/cluster/implementations/CraftingCPUCluster.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/me/cluster/implementations/CraftingCPUCluster.java b/me/cluster/implementations/CraftingCPUCluster.java index 50ef830c2..b3da25ad1 100644 --- a/me/cluster/implementations/CraftingCPUCluster.java +++ b/me/cluster/implementations/CraftingCPUCluster.java @@ -441,6 +441,11 @@ public class CraftingCPUCluster implements IAECluster, ICraftingCPU found = true; break; } + else if ( is != null ) + { + g = g.copy(); + g.decStackSize( is.stackSize ); + } } if ( !found )