mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
cab333b217
Don't send requests of every player was found in the global api cache SpigotMC/Spigot@841270ff1e Correctly set the response code for the cached lookups and return the ... SpigotMC/Spigot@f170b7899c Don't try and re-set the global api cache on reload SpigotMC/Spigot@b410a00a66 Use a compile time sneaky throw hack. SpigotMC/Spigot@508462b96b Fix a missed rename in WorldGenGroundBush SpigotMC/Spigot@0614d8fae9
23 lines
875 B
Diff
23 lines
875 B
Diff
From 4f74b1d2901a50080c62871d2639c200a09272c3 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 a283204..bbbcc86 100644
|
|
--- a/src/main/java/net/minecraft/server/UserCache.java
|
|
+++ b/src/main/java/net/minecraft/server/UserCache.java
|
|
@@ -126,7 +126,7 @@ public class UserCache {
|
|
this.e.addFirst(gameprofile);
|
|
}
|
|
} else {
|
|
- gameprofile = a(this.f, s1);
|
|
+ gameprofile = a(this.f, s); // Spigot - use correct case for offline players
|
|
if (gameprofile != null) {
|
|
this.a(gameprofile);
|
|
usercacheentry = (UserCacheEntry) this.c.get(s1);
|
|
--
|
|
1.9.1
|
|
|