2019-07-17 00:09:32 +02:00
|
|
|
From bb8c40312cc74d634ee982f9df515eb7b072f4dc Mon Sep 17 00:00:00 2001
|
2016-07-17 03:19:25 +02:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Sat, 16 Jul 2016 19:11:17 -0500
|
|
|
|
Subject: [PATCH] Don't lookup game profiles that have no UUID and no name
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/UserCache.java b/src/main/java/net/minecraft/server/UserCache.java
|
2019-07-17 00:09:32 +02:00
|
|
|
index ea0256755..b0d883d49 100644
|
2016-07-17 03:19:25 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/UserCache.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/UserCache.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -86,7 +86,7 @@ public class UserCache {
|
2016-07-17 03:19:25 +02:00
|
|
|
};
|
|
|
|
|
2019-05-28 01:01:45 +02:00
|
|
|
gameprofilerepository.findProfilesByNames(new String[]{s}, Agent.MINECRAFT, profilelookupcallback);
|
2016-07-17 03:19:25 +02:00
|
|
|
- if (!d() && agameprofile[0] == null) {
|
|
|
|
+ if (!d() && agameprofile[0] == null && !org.apache.commons.lang3.StringUtils.isBlank(s)) { // Paper - Don't lookup a profile with a blank name
|
|
|
|
UUID uuid = EntityHuman.a(new GameProfile((UUID) null, s));
|
|
|
|
GameProfile gameprofile = new GameProfile(uuid, s);
|
|
|
|
|
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2016-07-17 03:19:25 +02:00
|
|
|
|