Skulls with PlayerSkins no longer working

Discussion in 'Plugin Development' started by IDragonfire, Jul 23, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    IDragonfire

    Skulls have no longer players skins ...
    Server is in online mode ...

    Also the command gives a unskined skull :(
    My error? Bukkit error? MC error?

    command:
    Code:
    /give IDragonfire minecraft:skull 1 3 {SkullOwner:"IDragonfire"} 
    code:
    Code:java
    1. ItemStack skull = new ItemStack(Material.SKULL_ITEM, 1, (short) SkullType.PLAYER.ordinal());
    2. SkullMeta skullMeta = (SkullMeta) skull.getItemMeta();
    3. String name = "IDragonfire";
    4. skullMeta.setOwner(name);
    5. skullMeta.setDisplayName(ChatColor.RESET + name);
    6. skull.setItemMeta(skullMeta);
    7.  
     
  2. Offline

    Konkz

    I found this being problem with MC, I can't see the skin for skulls on my head yet my friends can.
     
  3. Offline

    Freack100

    Which MC version? maybe try out your UUID instead of the name
     
  4. Offline

    IDragonfire

    Last edited by a moderator: Jun 9, 2016
Thread Status:
Not open for further replies.

Share This Page