diff options
author | Shane Freeder <[email protected]> | 2024-04-28 18:08:59 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-28 10:08:59 -0700 |
commit | 52ff3b7382f1076dee9d3699fc38d4798e5a59b7 (patch) | |
tree | 786f0dbd0800cab62c6f2e242e5b98ebe6eee834 /patches/server/0027-Support-components-in-ItemMeta.patch | |
parent | 0f4d328fc1e4bfff5ceb7cce0238a9baf8b03ab3 (diff) | |
download | Paper-52ff3b7382f1076dee9d3699fc38d4798e5a59b7.tar.gz Paper-52ff3b7382f1076dee9d3699fc38d4798e5a59b7.zip |
Add itemName components (Resolves #10467) (#10471)
* Add itemName components (Resolves ##10467)
* improve javadocs and formatting
* rebased
---------
Co-authored-by: Jake Potrebic <[email protected]>
Diffstat (limited to 'patches/server/0027-Support-components-in-ItemMeta.patch')
-rw-r--r-- | patches/server/0027-Support-components-in-ItemMeta.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/patches/server/0027-Support-components-in-ItemMeta.patch b/patches/server/0027-Support-components-in-ItemMeta.patch index 55ba44e2da..8164a26fa7 100644 --- a/patches/server/0027-Support-components-in-ItemMeta.patch +++ b/patches/server/0027-Support-components-in-ItemMeta.patch @@ -5,7 +5,7 @@ Subject: [PATCH] Support components in ItemMeta diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaItem.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaItem.java -index 3cb5685a97f67d759537fc92bb4cb376bb2905a7..e967d6b32d9538d8456d73a67a73e3d3ea16b831 100644 +index 780b7e971a9d4fda1a9c78790c7969a0799f51ab..e663c996146986bc02efb05b4fb452913e4015d7 100644 --- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaItem.java +++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaItem.java @@ -860,11 +860,23 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta { @@ -32,7 +32,7 @@ index 3cb5685a97f67d759537fc92bb4cb376bb2905a7..e967d6b32d9538d8456d73a67a73e3d3 @Override public boolean hasDisplayName() { return this.displayName != null; -@@ -1026,6 +1038,14 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta { +@@ -1038,6 +1050,14 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta { return this.lore == null ? null : new ArrayList<String>(Lists.transform(this.lore, CraftChatMessage::fromComponent)); } @@ -47,7 +47,7 @@ index 3cb5685a97f67d759537fc92bb4cb376bb2905a7..e967d6b32d9538d8456d73a67a73e3d3 @Override public void setLore(List<String> lore) { if (lore == null || lore.isEmpty()) { -@@ -1040,6 +1060,21 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta { +@@ -1052,6 +1072,21 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta { } } @@ -69,7 +69,7 @@ index 3cb5685a97f67d759537fc92bb4cb376bb2905a7..e967d6b32d9538d8456d73a67a73e3d3 @Override public boolean hasCustomModelData() { return this.customModelData != null; -@@ -1663,6 +1698,11 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta { +@@ -1675,6 +1710,11 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta { } for (Object object : addFrom) { |