Typo getCondencedOutputs
This commit is contained in:
parent
7117fe44b3
commit
f5e39e4cb7
5 changed files with 13 additions and 13 deletions
|
@ -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;
|
||||
|
|
|
@ -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 );
|
||||
|
|
|
@ -317,7 +317,7 @@ public class PatternHelper implements ICraftingPatternDetails, Comparable<Patter
|
|||
}
|
||||
|
||||
@Override
|
||||
public IAEItemStack[] getCondencedOutputs()
|
||||
public IAEItemStack[] getCondensedOutputs()
|
||||
{
|
||||
return condencedOutputs;
|
||||
}
|
||||
|
|
|
@ -82,7 +82,7 @@ public class ItemEncodedPattern extends AEBaseItem implements ICraftingPatternIt
|
|||
boolean isCrafting = details.isCraftable();
|
||||
|
||||
IAEItemStack[] in = details.getCondencedInputs();
|
||||
IAEItemStack[] out = details.getCondencedOutputs();
|
||||
IAEItemStack[] out = details.getCondensedOutputs();
|
||||
|
||||
String label = (isCrafting ? GuiText.Crafts.getLocal() : GuiText.Creates.getLocal()) + ": ";
|
||||
String and = " " + GuiText.And.getLocal() + " ";
|
||||
|
@ -127,7 +127,7 @@ public class ItemEncodedPattern extends AEBaseItem implements ICraftingPatternIt
|
|||
if ( details == null )
|
||||
return null;
|
||||
|
||||
simpleCache.put( item, out = details.getCondencedOutputs()[0].getItemStack() );
|
||||
simpleCache.put( item, out = details.getCondensedOutputs()[0].getItemStack() );
|
||||
return out;
|
||||
}
|
||||
|
||||
|
|
|
@ -155,7 +155,7 @@ public class CraftingCPUCluster implements IAECluster, ICraftingCPU
|
|||
case PENDING:
|
||||
for (Entry<ICraftingPatternDetails, TaskProgress> 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<ICraftingPatternDetails, TaskProgress> 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<ICraftingPatternDetails, TaskProgress> 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 );
|
||||
|
|
Loading…
Reference in a new issue