2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/item/ItemSkullPlayer.java
|
|
|
|
+++ b/net/minecraft/world/item/ItemSkullPlayer.java
|
2021-06-11 07:00:00 +02:00
|
|
|
@@ -51,6 +51,16 @@
|
|
|
|
TileEntitySkull.a(gameprofile, (gameprofile1) -> {
|
|
|
|
nbttagcompound.set("SkullOwner", GameProfileSerializer.serialize(new NBTTagCompound(), gameprofile1));
|
|
|
|
});
|
2016-07-13 03:47:57 +02:00
|
|
|
+ // CraftBukkit start
|
2021-06-11 07:00:00 +02:00
|
|
|
+ } else {
|
2021-03-15 23:00:00 +01:00
|
|
|
+ net.minecraft.nbt.NBTTagList textures = nbttagcompound.getCompound("SkullOwner").getCompound("Properties").getList("textures", 10); // Safe due to method contracts
|
2016-07-13 03:47:57 +02:00
|
|
|
+ for (int i = 0; i < textures.size(); i++) {
|
2016-07-22 12:34:17 +02:00
|
|
|
+ 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
|
2016-07-12 12:18:08 +02:00
|
|
|
}
|
2021-06-11 07:00:00 +02:00
|
|
|
|
2016-07-12 12:18:08 +02:00
|
|
|
}
|