From 0e659116735a3a400eecf65fbc7d3daa5b849f58 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Mon, 11 Aug 2014 21:18:26 -0500 Subject: [PATCH] Prevent Incomplete Pushing for non crafting recipes. --- me/cluster/implementations/CraftingCPUCluster.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/me/cluster/implementations/CraftingCPUCluster.java b/me/cluster/implementations/CraftingCPUCluster.java index 068386c1e..484d25d08 100644 --- a/me/cluster/implementations/CraftingCPUCluster.java +++ b/me/cluster/implementations/CraftingCPUCluster.java @@ -608,8 +608,11 @@ public class CraftingCPUCluster implements IAECluster, ICraftingCPU { postChange( input[x], machineSrc ); ic.setInventorySlotContents( x, is ); - found = true; - continue; + if ( is.stackSize == input[x].getStackSize() ) + { + found = true; + continue; + } } }