mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-23 07:19:33 +01:00
Lookup game profiles for users that aren't onine
This commit is contained in:
parent
51cbd00f88
commit
3e8e275447
1 changed files with 16 additions and 2 deletions
|
@ -8,13 +8,27 @@ diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java
|
||||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java
|
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java
|
||||||
+++ b/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 {
|
@@ -0,0 +0,0 @@ class CraftMetaSkull extends CraftMetaItem implements SkullMeta {
|
||||||
if (name == null) {
|
if (name == null) {
|
||||||
profile = null;
|
profile = null;
|
||||||
} else {
|
} else {
|
||||||
- profile = new GameProfile(null, name);
|
- profile = new GameProfile(null, name);
|
||||||
+ // PaperSpigot - Check usercache for the profile
|
+ // PaperSpigot start - Check usercache if the player is online
|
||||||
+ profile = net.minecraft.server.MinecraftServer.getServer().getUserCache().getProfile(name);
|
+ EntityPlayer player = MinecraftServer.getServer().getPlayerList().getPlayer(name);
|
||||||
|
+ profile = player != null ? player.getProfile() : new GameProfile(null, name);
|
||||||
|
+ // PaperSpigot end
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue