Fixed Anti-Recursive Crafting Check

This commit is contained in:
AlgorithmX2
2014-07-12 18:13:40 -05:00
parent 91051183ad
commit 98e4604690
2 changed files with 10 additions and 5 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ public class CraftingTreeProcess
public boolean notRecurive(ICraftingPatternDetails details)
{
return parent.notRecurive( details );
return parent == null || parent.notRecurive( details );
}
long getTimes(long remaining, long stackSize)