Fix incorrect inequality in 683bae0670

Thanks Brokkoli & Phoenix616 for pointing out
This commit is contained in:
md_5 2019-10-17 20:35:42 +11:00
parent db98d54df9
commit 1e7a197f7a

View File

@ -675,7 +675,7 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta {
NBTTagList tagList = new NBTTagList();
for (IChatBaseComponent value : list) {
// SPIGOT-5342 - horrible hack as 0 version does not go through the Mojang updater
tagList.add(new NBTTagString(0 <= version || version >= 1803 ? CraftChatMessage.toJSON(value) : CraftChatMessage.fromComponent(value, EnumChatFormat.DARK_PURPLE))); // SPIGOT-4935
tagList.add(new NBTTagString(version <= 0 || version >= 1803 ? CraftChatMessage.toJSON(value) : CraftChatMessage.fromComponent(value, EnumChatFormat.DARK_PURPLE))); // SPIGOT-4935
}
return tagList;