diff --git a/crafting/CraftingTreeNode.java b/crafting/CraftingTreeNode.java index 55dbe6129..f36d7dff0 100644 --- a/crafting/CraftingTreeNode.java +++ b/crafting/CraftingTreeNode.java @@ -75,7 +75,7 @@ public class CraftingTreeNode boolean notRecurive(ICraftingPatternDetails details) { - IAEItemStack[] o = details.getCondencedOutputs(); + IAEItemStack[] o = details.getCondensedOutputs(); for (IAEItemStack i : o) if ( i.equals( what ) ) return false; diff --git a/crafting/CraftingTreeProcess.java b/crafting/CraftingTreeProcess.java index 1de6b5f9e..3519481bf 100644 --- a/crafting/CraftingTreeProcess.java +++ b/crafting/CraftingTreeProcess.java @@ -69,7 +69,7 @@ public class CraftingTreeProcess ItemStack g = part.getItemStack(); boolean isAnInput = false; - for ( IAEItemStack a : details.getCondencedOutputs() ) + for ( IAEItemStack a : details.getCondensedOutputs() ) { if ( g != null && a != null && a.equals( g ) ) isAnInput = true; @@ -118,7 +118,7 @@ public class CraftingTreeProcess ItemStack g = part.getItemStack(); boolean isAnInput = false; - for (IAEItemStack a : details.getCondencedOutputs()) + for (IAEItemStack a : details.getCondensedOutputs()) { if ( g != null && a != null && a.equals( g ) ) isAnInput = true; @@ -149,7 +149,7 @@ public class CraftingTreeProcess IAEItemStack getAmountCrafted(IAEItemStack what2) { - for (IAEItemStack is : details.getCondencedOutputs()) + for (IAEItemStack is : details.getCondensedOutputs()) { if ( is.equals( what2 ) ) { @@ -160,7 +160,7 @@ public class CraftingTreeProcess } // more fuzzy! - for (IAEItemStack is : details.getCondencedOutputs()) + for (IAEItemStack is : details.getCondensedOutputs()) { if ( is.getItem() == what2.getItem() && (is.getItem().isDamageable() || is.getItemDamage() == what2.getItemDamage()) ) { @@ -228,7 +228,7 @@ public class CraftingTreeProcess // assume its possible. // add crafting results.. - for (IAEItemStack out : details.getCondencedOutputs()) + for (IAEItemStack out : details.getCondensedOutputs()) { IAEItemStack o = out.copy(); o.setStackSize( o.getStackSize() * i ); diff --git a/helpers/PatternHelper.java b/helpers/PatternHelper.java index a1bbebc35..78e488bab 100644 --- a/helpers/PatternHelper.java +++ b/helpers/PatternHelper.java @@ -317,7 +317,7 @@ public class PatternHelper implements ICraftingPatternDetails, Comparable t : tasks.entrySet()) { - for (IAEItemStack ais : t.getKey().getCondencedOutputs()) + for (IAEItemStack ais : t.getKey().getCondensedOutputs()) { ais = ais.copy(); ais.setStackSize( ais.getStackSize() * t.getValue().value ); @@ -175,7 +175,7 @@ public class CraftingCPUCluster implements IAECluster, ICraftingCPU for (Entry t : tasks.entrySet()) { - for (IAEItemStack ais : t.getKey().getCondencedOutputs()) + for (IAEItemStack ais : t.getKey().getCondensedOutputs()) { ais = ais.copy(); ais.setStackSize( ais.getStackSize() * t.getValue().value ); @@ -680,7 +680,7 @@ public class CraftingCPUCluster implements IAECluster, ICraftingCPU didsomething = true; remainingOperations--; - for (IAEItemStack out : details.getCondencedOutputs()) + for (IAEItemStack out : details.getCondensedOutputs()) { postChange( out, machineSrc ); waitingFor.add( out.copy() ); @@ -925,7 +925,7 @@ public class CraftingCPUCluster implements IAECluster, ICraftingCPU for (Entry t : tasks.entrySet()) { - for (IAEItemStack ais : t.getKey().getCondencedOutputs()) + for (IAEItemStack ais : t.getKey().getCondensedOutputs()) { if ( ais.equals( is ) ) is.setStackSize( is.getStackSize() + ais.getStackSize() * t.getValue().value );