From 939ca170075605f5d555a7ada1d07403b9268d53 Mon Sep 17 00:00:00 2001 From: Shane Freeder Date: Sun, 10 Jun 2018 12:45:04 +0100 Subject: [PATCH] Fix missed change inside of CraftSkullMeta --- .../0043-Use-UserCache-for-player-heads.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Spigot-Server-Patches/0043-Use-UserCache-for-player-heads.patch b/Spigot-Server-Patches/0043-Use-UserCache-for-player-heads.patch index 2908aa091..7e0638d88 100644 --- a/Spigot-Server-Patches/0043-Use-UserCache-for-player-heads.patch +++ b/Spigot-Server-Patches/0043-Use-UserCache-for-player-heads.patch @@ -1,11 +1,11 @@ -From ab1dd2a1c753c497a9aaad2e079b6675847c1d01 Mon Sep 17 00:00:00 2001 +From ac252f794e6d93e8120a97a015c25fde2f7200f9 Mon Sep 17 00:00:00 2001 From: Techcable Date: Wed, 2 Mar 2016 23:42:37 -0600 Subject: [PATCH] Use UserCache for player heads diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java -index b6b34627a..5659c1c70 100644 +index b6b34627a..862b30286 100644 --- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java +++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java @@ -6,6 +6,7 @@ import net.minecraft.server.GameProfileSerializer; @@ -25,7 +25,7 @@ index b6b34627a..5659c1c70 100644 + GameProfile newProfile = null; + EntityPlayer player = MinecraftServer.getServer().getPlayerList().getPlayer(name); + if (player != null) newProfile = player.getProfile(); -+ if (newProfile == null) profile = new GameProfile(null, name); ++ if (newProfile == null) newProfile = new GameProfile(null, name); + profile = newProfile; + // Paper end }