mirror of
https://e.coding.net/circlecloud/MenuProtect.git
synced 2024-11-21 10:48:46 +00:00
fix: 修复物品Lore为空时的BUG
This commit is contained in:
parent
c14411a87a
commit
ebbe4c4f1e
@ -17,7 +17,7 @@ public class MarkUtil {
|
||||
public static Map<String, List<String>> cmds = new HashMap<>();
|
||||
|
||||
public static void handlerItemClick(final Player p, final ItemStack is) {
|
||||
if (hasMark(is)) {
|
||||
if (hasMark(is) && is.getItemMeta().hasLore()) {
|
||||
for (final String lore : is.getItemMeta().getLore()) {
|
||||
if (cmds.containsKey(lore)) {
|
||||
for (final String cmd : cmds.get(lore)) {
|
||||
|
Loading…
Reference in New Issue
Block a user