Get the durability @param is the item @return the item durability
(ItemStack is)
| 265 | * @return the item durability |
| 266 | */ |
| 267 | public static short getDurability(ItemStack is) { |
| 268 | if (!is(is)) { |
| 269 | return 0; |
| 270 | } |
| 271 | |
| 272 | return is.getDurability(); |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * Set the durability (if higher than max, it will be set to the max) |
no test coverage detected