Does this item have durability @param is the item @return true if it does
(ItemStack is)
| 203 | * @return true if it does |
| 204 | */ |
| 205 | public static boolean hasDurability(ItemStack is) { |
| 206 | return is(is) && getMaxDurability(is) > 0; |
| 207 | } |
| 208 | |
| 209 | /** |
| 210 | * Get the durability percent |
no test coverage detected