Fix a bug in shift clicking that if one item has NBT but the other does not (but they share the same item id and meta), that they were considered equal (when they obviously are not)

This commit is contained in:
Pahimar 2015-02-13 22:47:19 -05:00
parent 76460a75d5
commit 0e3c064b89

View file

@ -205,7 +205,7 @@ public class ItemHelper
return true;
}
}
else
else if (!itemStack1.hasTagCompound() && !itemStack2.hasTagCompound())
{
return true;
}