diff --git a/crafting/CraftingTreeNode.java b/crafting/CraftingTreeNode.java index f36d7dff0..fff611400 100644 --- a/crafting/CraftingTreeNode.java +++ b/crafting/CraftingTreeNode.java @@ -80,7 +80,7 @@ public class CraftingTreeNode if ( i.equals( what ) ) return false; - o = details.getCondencedInputs(); + o = details.getCondensedInputs(); for (IAEItemStack i : o) if ( i.equals( what ) ) return false; diff --git a/crafting/CraftingTreeProcess.java b/crafting/CraftingTreeProcess.java index 3519481bf..9d425ebfb 100644 --- a/crafting/CraftingTreeProcess.java +++ b/crafting/CraftingTreeProcess.java @@ -64,7 +64,7 @@ public class CraftingTreeProcess fullsimulation = true; } - for ( IAEItemStack part : details.getCondencedInputs() ) + for ( IAEItemStack part : details.getCondensedInputs() ) { ItemStack g = part.getItemStack(); @@ -96,7 +96,7 @@ public class CraftingTreeProcess else { // this is minorly different then below, this slot uses the pattern, but kinda fudges it. - for (IAEItemStack part : details.getCondencedInputs()) + for (IAEItemStack part : details.getCondensedInputs()) { for (int x = 0; x < list.length; x++) { @@ -113,7 +113,7 @@ public class CraftingTreeProcess } else { - for ( IAEItemStack part : details.getCondencedInputs() ) + for ( IAEItemStack part : details.getCondensedInputs() ) { ItemStack g = part.getItemStack(); @@ -128,7 +128,7 @@ public class CraftingTreeProcess limitQty = true; } - for (IAEItemStack part : details.getCondencedInputs()) + for (IAEItemStack part : details.getCondensedInputs()) { nodes.put( new CraftingTreeNode( cc, job, part.copy(), this, -1, depth + 1 ), part.getStackSize() ); } diff --git a/helpers/PatternHelper.java b/helpers/PatternHelper.java index 78e488bab..62ea5458d 100644 --- a/helpers/PatternHelper.java +++ b/helpers/PatternHelper.java @@ -311,7 +311,7 @@ public class PatternHelper implements ICraftingPatternDetails, Comparable