Paper/nms-patches/ItemSkullPlayer.patch

19 lines
929 B
Diff
Raw Normal View History

2018-07-15 02:00:00 +02:00
--- a/net/minecraft/server/ItemSkullPlayer.java
+++ b/net/minecraft/server/ItemSkullPlayer.java
@@ -42,6 +42,15 @@
nbttagcompound.set("SkullOwner", GameProfileSerializer.serialize(new NBTTagCompound(), gameprofile));
return true;
} else {
2016-07-13 03:47:57 +02:00
+ // CraftBukkit start
+ NBTTagList textures = nbttagcompound.getCompound("SkullOwner").getCompound("Properties").getList("textures", 10); // Safe due to method contracts
+ for (int i = 0; i < textures.size(); i++) {
+ if (textures.get(i) instanceof NBTTagCompound && !((NBTTagCompound) textures.get(i)).hasKeyOfType("Signature", 8) && ((NBTTagCompound) textures.get(i)).getString("Value").trim().isEmpty()) {
+ nbttagcompound.remove("SkullOwner");
+ break;
2016-07-13 03:47:57 +02:00
+ }
+ }
+ // CraftBukkit end
return false;
}
}