Fix hashCode
This commit is contained in:
parent
91cecec28a
commit
7cfb28fecb
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ public class LiquidStack
|
|||
@Override
|
||||
public final int hashCode()
|
||||
{
|
||||
return Objects.hashCode(itemID, itemMeta);
|
||||
return 31 * itemID + itemMeta;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue