[SPIGOT-1465] Fix skulls with no owner not displaying texture.

This commit is contained in:
md_5 2016-02-05 11:44:06 +11:00
parent 039621dd44
commit 69fe73e7d9

View File

@ -71,7 +71,7 @@ class CraftMetaSkull extends CraftMetaItem implements SkullMeta {
void applyToItem(NBTTagCompound tag) {
super.applyToItem(tag);
if (hasOwner()) {
if (profile != null) {
NBTTagCompound owner = new NBTTagCompound();
GameProfileSerializer.serialize(owner, profile);
tag.set(SKULL_OWNER.NBT, owner);