mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-08-31 21:49:13 +00:00
22 lines
922 B
Diff
22 lines
922 B
Diff
From b866dfa6c02205e349ffe4da6dde1619526fb4fd Mon Sep 17 00:00:00 2001
|
|
From: md_5 <git@md-5.net>
|
|
Date: Mon, 14 Apr 2014 09:46:20 +1000
|
|
Subject: [PATCH] Use Provided Case for Non Existent Offline Players
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/UserCache.java b/src/main/java/net/minecraft/server/UserCache.java
|
|
index 08ba68fba..674243c49 100644
|
|
--- a/src/main/java/net/minecraft/server/UserCache.java
|
|
+++ b/src/main/java/net/minecraft/server/UserCache.java
|
|
@@ -154,7 +154,7 @@ public class UserCache {
|
|
this.f.remove(gameprofile);
|
|
this.f.addFirst(gameprofile);
|
|
} else {
|
|
- gameprofile = a(this.g, s1);
|
|
+ gameprofile = a(this.g, s); // Spigot - use correct case for offline players
|
|
if (gameprofile != null) {
|
|
this.a(gameprofile);
|
|
usercache_usercacheentry = (UserCache.UserCacheEntry) this.d.get(s1);
|
|
--
|
|
2.17.1
|
|
|