mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
23 lines
917 B
Diff
23 lines
917 B
Diff
From 9dd60ebc834af9cfe3089a1252cf4da72a30f3b2 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 4d00614..bbe6e69 100644
|
|
--- a/src/main/java/net/minecraft/server/UserCache.java
|
|
+++ b/src/main/java/net/minecraft/server/UserCache.java
|
|
@@ -152,7 +152,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.5.0
|
|
|