mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-21 05:44:33 +00:00
Fix incorrect inequality in 683bae0670
Thanks Brokkoli & Phoenix616 for pointing out
This commit is contained in:
parent
db98d54df9
commit
1e7a197f7a
1 changed files with 1 additions and 1 deletions
|
@ -675,7 +675,7 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta {
|
||||||
NBTTagList tagList = new NBTTagList();
|
NBTTagList tagList = new NBTTagList();
|
||||||
for (IChatBaseComponent value : list) {
|
for (IChatBaseComponent value : list) {
|
||||||
// SPIGOT-5342 - horrible hack as 0 version does not go through the Mojang updater
|
// 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;
|
return tagList;
|
||||||
|
|
Loading…
Add table
Reference in a new issue