Fix hashCode

This commit is contained in:
Christian 2013-03-27 19:27:00 -04:00
parent 91cecec28a
commit 7cfb28fecb
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ public class LiquidStack
@Override
public final int hashCode()
{
return Objects.hashCode(itemID, itemMeta);
return 31 * itemID + itemMeta;
}
@Override