Prevent Incomplete Pushing for non crafting recipes.

This commit is contained in:
AlgorithmX2 2014-08-11 21:18:26 -05:00
parent 410cc6172d
commit 0e65911673

View file

@ -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;
}
}
}