spigot make item unbreakable code example
Example 1: spigot make item unbreakable
ItemStack item = new ItemStack(Material.DIAMOND_CHESTPLATE);;
item.setDurability((short) -1);
Example 2: spigot make item unbreakable
ItemStack item = new ItemStack(Material.DIAMOND_CHESTPLATE);;
item.setDurability((short) -1);