SPIGOT-4736: Serialized ItemStack Lore Doesn't Deserialize

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2019-04-25 10:06:40 +10:00
parent e9b89119e0
commit 2f808394c5
2 changed files with 13 additions and 2 deletions

View File

@@ -1191,7 +1191,7 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta {
}
if (hasLore()) {
builder.put(LORE.BUKKIT, ImmutableList.copyOf(lore));
builder.put(LORE.BUKKIT, ImmutableList.copyOf(Lists.transform(lore, CraftChatMessage::fromComponent)));
}
if (hasCustomModelData()) {