diff --git a/crafting/CraftingTreeNode.java b/crafting/CraftingTreeNode.java index fff611400..864c92316 100644 --- a/crafting/CraftingTreeNode.java +++ b/crafting/CraftingTreeNode.java @@ -60,7 +60,7 @@ public class CraftingTreeNode for (ICraftingPatternDetails details : cc.getCraftingFor( what, parent == null ? null : parent.details, slot, world ))// in // order. { - if ( parent == null || parent.notRecurive( details ) ) + if ( parent == null || parent.notRecursive( details ) ) nodes.add( new CraftingTreeProcess( cc, job, details, this, depth + 1, world ) ); } @@ -73,7 +73,7 @@ public class CraftingTreeNode return is; } - boolean notRecurive(ICraftingPatternDetails details) + boolean notRecursive(ICraftingPatternDetails details) { IAEItemStack[] o = details.getCondensedOutputs(); for (IAEItemStack i : o) @@ -88,7 +88,7 @@ public class CraftingTreeNode if ( parent == null ) return true; - return parent.notRecurive( details ); + return parent.notRecursive( details ); } public IAEItemStack request(MECraftingInventory inv, long l, BaseActionSource src) throws CraftBranchFailure, InterruptedException diff --git a/crafting/CraftingTreeProcess.java b/crafting/CraftingTreeProcess.java index 9d425ebfb..52c89a95e 100644 --- a/crafting/CraftingTreeProcess.java +++ b/crafting/CraftingTreeProcess.java @@ -135,9 +135,9 @@ public class CraftingTreeProcess } } - public boolean notRecurive(ICraftingPatternDetails details) + public boolean notRecursive(ICraftingPatternDetails details) { - return parent == null || parent.notRecurive( details ); + return parent == null || parent.notRecursive( details ); } long getTimes(long remaining, long stackSize)