This commit is contained in:
AlgorithmX2 2014-07-19 14:35:34 -05:00
commit 94d17f6abd

View file

@ -103,8 +103,11 @@ public class CraftingTreeNode
if ( !exhausted )
{
IAEItemStack is = job.checkUse( available );
thingsUsed.add( is.copy() );
used.add( is );
if ( is != null )
{
thingsUsed.add( is.copy() );
used.add( is );
}
}
bytes += available.getStackSize();
@ -125,8 +128,11 @@ public class CraftingTreeNode
if ( !exhausted )
{
IAEItemStack is = job.checkUse( available );
thingsUsed.add( is.copy() );
used.add( is );
if ( is != null )
{
thingsUsed.add( is.copy() );
used.add( is );
}
}
bytes += available.getStackSize();