Prevent Incomplete Pushing for non crafting recipes.
This commit is contained in:
parent
410cc6172d
commit
0e65911673
1 changed files with 5 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue