SPIGOT-5403: isSimilar returns true for different skulls

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-12-05 10:37:02 +11:00
parent e7370ab173
commit a0dd86fbe1

View file

@ -191,7 +191,8 @@ class CraftMetaSkull extends CraftMetaItem implements SkullMeta {
if (meta instanceof CraftMetaSkull) {
CraftMetaSkull that = (CraftMetaSkull) meta;
return (this.hasOwner() ? that.hasOwner() && this.profile.equals(that.profile) : !that.hasOwner());
// SPIGOT-5403: equals does not check properties
return (this.profile != null ? that.profile != null && this.profile.equals(that.profile) && this.profile.getProperties().equals(that.profile.getProperties()) : that.profile == null);
}
return true;
}