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

37 lines
1.4 KiB
Diff
Raw Normal View History

2016-11-17 02:23:38 +00:00
From 81aa73e5615c5bd1b76585922ded791200c0343b 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
2016-02-29 23:09:49 +00:00
index 2abca0c..7d83bbe 100644
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java
2016-02-29 23:09:49 +00:00
@@ -2,9 +2,7 @@ package org.bukkit.craftbukkit.inventory;
import java.util.Map;
-import net.minecraft.server.GameProfileSerializer;
-import net.minecraft.server.NBTBase;
-import net.minecraft.server.NBTTagCompound;
+import net.minecraft.server.*;
import org.bukkit.Material;
import org.bukkit.configuration.serialization.DelegateDeserialization;
2016-02-29 23:09:49 +00:00
@@ -132,7 +130,10 @@ class CraftMetaSkull extends CraftMetaItem implements SkullMeta {
if (name == null) {
profile = null;
} else {
- profile = new GameProfile(null, name);
2016-02-29 23:09:49 +00:00
+ // Paper start - Check usercache if the player is online
+ EntityPlayer player = MinecraftServer.getServer().getPlayerList().getPlayer(name);
+ profile = player != null ? player.getProfile() : new GameProfile(null, name);
2016-02-29 23:09:49 +00:00
+ // Paper end
}
return true;
--
2016-11-17 02:23:38 +00:00
2.10.2