2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2021-11-27 09:11:43 +01:00
|
|
|
From: MiniDigger <admin@benndorf.dev>
|
2021-06-11 14:02:28 +02:00
|
|
|
Date: Sat, 6 Jun 2020 18:13:42 +0200
|
|
|
|
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
|
2023-12-06 04:00:14 +01:00
|
|
|
index f66104abef112ed1056f6f70b38c1d7865431a6c..9c20c225ba46f2126a43e2f879f4849081cae90a 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaItem.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaItem.java
|
2023-12-06 04:00:14 +01:00
|
|
|
@@ -879,11 +879,23 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta {
|
2023-10-27 01:34:58 +02:00
|
|
|
return CraftChatMessage.fromJSONComponent(this.displayName);
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public net.md_5.bungee.api.chat.BaseComponent[] getDisplayNameComponent() {
|
|
|
|
+ return displayName == null ? new net.md_5.bungee.api.chat.BaseComponent[0] : net.md_5.bungee.chat.ComponentSerializer.parse(displayName);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
@Override
|
|
|
|
public final void setDisplayName(String name) {
|
|
|
|
this.displayName = CraftChatMessage.fromStringOrNullToJSON(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public void setDisplayNameComponent(net.md_5.bungee.api.chat.BaseComponent[] component) {
|
|
|
|
+ this.displayName = net.md_5.bungee.chat.ComponentSerializer.toString(component);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
@Override
|
|
|
|
public boolean hasDisplayName() {
|
2021-06-14 11:46:59 +02:00
|
|
|
return this.displayName != null;
|
2023-12-06 04:00:14 +01:00
|
|
|
@@ -1026,6 +1038,14 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta {
|
2021-06-11 14:02:28 +02:00
|
|
|
return this.lore == null ? null : new ArrayList<String>(Lists.transform(this.lore, CraftChatMessage::fromJSONComponent));
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public List<net.md_5.bungee.api.chat.BaseComponent[]> getLoreComponents() {
|
|
|
|
+ return this.lore == null ? null : new ArrayList<>(this.lore.stream().map(entry ->
|
|
|
|
+ net.md_5.bungee.chat.ComponentSerializer.parse(entry)
|
|
|
|
+ ).collect(java.util.stream.Collectors.toList()));
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
@Override
|
|
|
|
public void setLore(List<String> lore) {
|
|
|
|
if (lore == null || lore.isEmpty()) {
|
2023-12-06 04:00:14 +01:00
|
|
|
@@ -1040,6 +1060,21 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public void setLoreComponents(List<net.md_5.bungee.api.chat.BaseComponent[]> lore) {
|
|
|
|
+ if (lore == null) {
|
|
|
|
+ this.lore = null;
|
|
|
|
+ } else {
|
|
|
|
+ if (this.lore == null) {
|
|
|
|
+ safelyAdd(lore, this.lore = new ArrayList<>(lore.size()), false);
|
|
|
|
+ } else {
|
|
|
|
+ this.lore.clear();
|
|
|
|
+ safelyAdd(lore, this.lore, false);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
@Override
|
|
|
|
public boolean hasCustomModelData() {
|
2021-06-14 11:46:59 +02:00
|
|
|
return this.customModelData != null;
|
2023-12-06 04:00:14 +01:00
|
|
|
@@ -1508,6 +1543,11 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (Object object : addFrom) {
|
|
|
|
+ // Paper start - support components
|
|
|
|
+ if(object instanceof net.md_5.bungee.api.chat.BaseComponent[]) {
|
|
|
|
+ addTo.add(net.md_5.bungee.chat.ComponentSerializer.toString((net.md_5.bungee.api.chat.BaseComponent[]) object));
|
|
|
|
+ } else
|
|
|
|
+ // Paper end
|
|
|
|
if (!(object instanceof String)) {
|
2023-06-18 13:03:18 +02:00
|
|
|
if (object != null) {
|
|
|
|
// SPIGOT-7399: Null check via if is important,
|