SPIGOT-2495: Better validation of Skulls.

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2016-07-12 20:18:08 +10:00
parent b38424139e
commit a9eb9b3f1a

View file

@ -0,0 +1,10 @@
--- a/net/minecraft/server/ItemSkull.java
+++ b/net/minecraft/server/ItemSkull.java
@@ -117,6 +117,7 @@
nbttagcompound.set("SkullOwner", GameProfileSerializer.serialize(new NBTTagCompound(), gameprofile));
return true;
} else {
+ nbttagcompound.remove("SkullOwner"); // CraftBukkit - remove broken skulls
return false;
}
}