mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-18 00:20:44 +00:00
fix xp recipes
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user