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
+2 -2
View File
@@ -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;
}