Does the item have any lore? @param is the item @return true if it does
(ItemStack is)
| 115 | * @return true if it does |
| 116 | */ |
| 117 | public static boolean hasLore(ItemStack is) { |
| 118 | return hasMeta(is) && is.getItemMeta().hasLore(); |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Does the item have the given name (color matters) |
nothing calls this directly
no test coverage detected