Don't mark things that don't exist.
This commit is contained in:
parent
e2288dafc7
commit
b36ee3bf84
1 changed files with 10 additions and 4 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue