Fixed Anti-Recursive Crafting Check
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user