From 3e8e27544720613d3c8e87b7f51fa15f9602e768 Mon Sep 17 00:00:00 2001 From: Techcable Date: Sat, 15 Aug 2015 14:05:03 -0500 Subject: [PATCH] Lookup game profiles for users that aren't onine --- .../Use-UserCache-for-player-heads.patch | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/Spigot-Server-Patches/Use-UserCache-for-player-heads.patch b/Spigot-Server-Patches/Use-UserCache-for-player-heads.patch index ddf1ca5148..ad75c684ab 100644 --- a/Spigot-Server-Patches/Use-UserCache-for-player-heads.patch +++ b/Spigot-Server-Patches/Use-UserCache-for-player-heads.patch @@ -8,13 +8,27 @@ diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 --- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java +++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java +@@ -0,0 +0,0 @@ import net.minecraft.server.GameProfileSerializer; + import net.minecraft.server.NBTBase; + import net.minecraft.server.NBTTagCompound; + ++// PaperSpigot start ++import net.minecraft.server.EntityPlayer; ++import net.minecraft.server.MinecraftServer; ++// PaperSpigot end ++ + import org.bukkit.Material; + import org.bukkit.configuration.serialization.DelegateDeserialization; + import org.bukkit.craftbukkit.inventory.CraftMetaItem.SerializableMeta; @@ -0,0 +0,0 @@ class CraftMetaSkull extends CraftMetaItem implements SkullMeta { if (name == null) { profile = null; } else { - profile = new GameProfile(null, name); -+ // PaperSpigot - Check usercache for the profile -+ profile = net.minecraft.server.MinecraftServer.getServer().getUserCache().getProfile(name); ++ // PaperSpigot start - Check usercache if the player is online ++ EntityPlayer player = MinecraftServer.getServer().getPlayerList().getPlayer(name); ++ profile = player != null ? player.getProfile() : new GameProfile(null, name); ++ // PaperSpigot end } return true;