Paper/Spigot-Server-Patches/0043-Use-UserCache-for-player-heads.patch

37 lines
1.4 KiB
Diff
Raw Normal View History

From ab1dd2a1c753c497a9aaad2e079b6675847c1d01 Mon Sep 17 00:00:00 2001
From: Techcable <Techcable@outlook.com>
2016-02-29 23:09:49 +00:00
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
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java
2016-11-21 23:00:40 +00:00
@@ -6,6 +6,7 @@ import net.minecraft.server.GameProfileSerializer;
import net.minecraft.server.NBTBase;
import net.minecraft.server.NBTTagCompound;
import net.minecraft.server.TileEntitySkull;
2016-02-29 23:09:49 +00:00
+import net.minecraft.server.*;
2017-09-07 02:59:08 +00:00
import org.bukkit.Bukkit;
import org.bukkit.Material;
@@ -141,7 +142,13 @@ class CraftMetaSkull extends CraftMetaItem implements SkullMeta {
if (name == null) {
profile = null;
} else {
2018-01-01 21:29:33 +00:00
- profile = new GameProfile(null, name);
2016-11-21 23:00:40 +00:00
+ // Paper start - Use Online Players Skull
+ GameProfile newProfile = null;
+ EntityPlayer player = MinecraftServer.getServer().getPlayerList().getPlayer(name);
+ if (player != null) newProfile = player.getProfile();
+ if (newProfile == null) profile = new GameProfile(null, name);
+ profile = newProfile;
2016-02-29 23:09:49 +00:00
+ // Paper end
}
2018-01-01 21:29:33 +00:00
return true;
--
2.17.1