13
0
geforkt von Mirrors/Paper

SPIGOT-4100: Ignore invalid item display names

By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2018-07-21 09:54:08 +10:00
Ursprung 8eca53392b
Commit 2a1945fae1

Datei anzeigen

@ -39,6 +39,7 @@ import com.google.common.base.Strings;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Sets;
import com.google.gson.JsonParseException;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
@ -271,11 +272,19 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable {
NBTTagCompound display = tag.getCompound(DISPLAY.NBT);
if (display.hasKey(NAME.NBT)) {
displayName = IChatBaseComponent.ChatSerializer.a(display.getString(NAME.NBT));
try {
displayName = IChatBaseComponent.ChatSerializer.a(display.getString(NAME.NBT));
} catch (JsonParseException ex) {
// Ignore (stripped like Vanilla)
}
}
if (display.hasKey(LOCNAME.NBT)) {
locName = IChatBaseComponent.ChatSerializer.a(display.getString(LOCNAME.NBT));
try {
locName = IChatBaseComponent.ChatSerializer.a(display.getString(LOCNAME.NBT));
} catch (JsonParseException ex) {
// Ignore (stripped like Vanilla)
}
}
if (display.hasKey(LORE.NBT)) {