猿汐
正如标题,我想向各位大佬寻求一下帮助

我想实现:获取手中的物品,为它添加一段lore,但不改变原来的,只是下方多出一段

在线等,谢谢。



  1. ItemMeta im = item.getItemMeta();
  2. List<String> lore = item.getItemMeta.hasLore() ? item.getItemMeta.getLore() : new ArrayList<>();
  3. lore.add("你要添加的lore");
  4. im.setLore(lore);
  5. item.setItemMeta(im);
复制代码

以上代码纯手打 可能有错误的地方 仅供参考