Merge pull request #1478 from yueh/fix-1465

Fixes #1465 faulty item comparison
This commit is contained in:
yueh
2015-05-19 00:53:53 +02:00
3 changed files with 9 additions and 6 deletions
@@ -93,7 +93,7 @@ public final class DisassembleRecipe implements IRecipe
{
// needs a single input in the recipe
itemCount++;
if ( itemCount > 1 )
if( itemCount > 1 )
{
return MISMATCHED_STACK;
}