[SPIGOT-1777] SkullMeta glitch Created: 05/Mar/16 Updated: 11/Dec/17 Resolved: 10/Dec/16 |
|
Status: | Resolved |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | ImAFlyingPancake | Assignee: | Unassigned |
Resolution: | Cannot Reproduce | Votes: | 0 |
Labels: | 1.9, glitch, metadata, skull |
Attachments: |
![]() |
Description |
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) 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); |