Fixed Bug: #0613 - interface bug when crafting large quantities of items

This commit is contained in:
AlgorithmX2
2014-07-16 20:31:23 -05:00
parent ead5e65a0e
commit a69d1492ef
2 changed files with 10 additions and 3 deletions
+3 -1
View File
@@ -188,7 +188,9 @@ public class CraftingTreeNode
{
missing += l;
bytes += l;
return what;
IAEItemStack rv = what.copy();
rv.setStackSize( l );
return rv;
}
throw new CraftBranchFailure( what, l );