2016-03-24 07:39:29 +01:00
|
|
|
From 0c3a223e87348233b7c64ae18fddc88e169a95cd Mon Sep 17 00:00:00 2001
|
2016-03-22 04:38:24 +01:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Tue, 5 Jan 2016 21:48:24 -0500
|
|
|
|
Subject: [PATCH] Fix SkullCache case bug
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntitySkull.java b/src/main/java/net/minecraft/server/TileEntitySkull.java
|
|
|
|
index 7eecc6c..3c20ef3 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntitySkull.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntitySkull.java
|
|
|
|
@@ -186,7 +186,7 @@ public class TileEntitySkull extends TileEntity implements ITickable {
|
|
|
|
} else if (MinecraftServer.getServer() == null) {
|
|
|
|
callback.apply(gameprofile);
|
|
|
|
} else {
|
|
|
|
- GameProfile profile = skinCache.getIfPresent(gameprofile.getName());
|
|
|
|
+ GameProfile profile = skinCache.getIfPresent(gameprofile.getName().toLowerCase()); // Paper
|
|
|
|
if (profile != null && Iterables.getFirst(profile.getProperties().get("textures"), (Object) null) != null) {
|
|
|
|
callback.apply(profile);
|
|
|
|
} else {
|
|
|
|
--
|
2016-03-24 07:39:29 +01:00
|
|
|
2.7.4.windows.1
|
2016-03-22 04:38:24 +01:00
|
|
|
|