When I have a skull item that has a modified SkullMeta, there is a strange visual glitch in the Offhand slot (see image) (both in survival and creative modes)
When I hover the skull, the glitch disappears.
How to reproduce :
ItemStack item = new ItemStack(Material.SKULL_ITEM , 1 , (byte) SkullType.PLAYER.ordinal()); SkullMeta skullMeta = (SkullMeta)item.getItemMeta(); skullMeta.setOwner(e.getPlayer().getName()); item.setItemMeta(skullMeta); player.getInventory().addItem(item);