Get the max durability @param is the item @return the item type's max durability
(ItemStack is)
| 251 | * @return the item type's max durability |
| 252 | */ |
| 253 | public static short getMaxDurability(ItemStack is) { |
| 254 | if (!is(is)) { |
| 255 | return 0; |
| 256 | } |
| 257 | |
| 258 | return is.getType().getMaxDurability(); |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * Get the durability |
no test coverage detected