fix xp recipes

This commit is contained in:
okx-code
2025-08-29 05:03:52 +01:00
parent 9278f581e1
commit 021f6565d9
2 changed files with 47 additions and 2 deletions

View File

@@ -15,8 +15,8 @@ public class HandPicked {
public static ItemStack markHandPicked(ItemStack item) {
ItemMeta meta = item.getItemMeta();
meta.lore(List.of(
Component.text("Hand picked"),
Component.text("Unbruised and suitable for use in XP production")
Component.empty().append(Component.text("Hand picked")),
Component.empty().append(Component.text("Unbruised and suitable for use in XP production"))
));
meta.getPersistentDataContainer().set(KEY, PersistentDataType.BOOLEAN, true);
item.setItemMeta(meta);