mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 13:06:02 +01:00
SPIGOT-2537: Relax skull check even for nominally invalid skulls.
This commit is contained in:
parent
7ae605218b
commit
f5d891f609
@ -1,22 +1,17 @@
|
||||
--- a/net/minecraft/server/ItemSkull.java
|
||||
+++ b/net/minecraft/server/ItemSkull.java
|
||||
@@ -117,6 +117,20 @@
|
||||
@@ -117,6 +117,15 @@
|
||||
nbttagcompound.set("SkullOwner", GameProfileSerializer.serialize(new NBTTagCompound(), gameprofile));
|
||||
return true;
|
||||
} else {
|
||||
+ // CraftBukkit start
|
||||
+ boolean valid = true;
|
||||
+
|
||||
+ 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)) {
|
||||
+ valid = false;
|
||||
+ 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;
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ if (!valid) {
|
||||
+ nbttagcompound.remove("SkullOwner");
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user