Fixes #1465 faulty item comparison

This commit is contained in:
yueh
2015-05-18 17:52:56 +02:00
parent a349e1a277
commit 7fa7502770
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;
}