Typo getCondencedOutputs

This commit is contained in:
thatsIch
2014-09-20 22:30:12 +02:00
parent 7117fe44b3
commit f5e39e4cb7
5 changed files with 13 additions and 13 deletions
@@ -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 );