2018-08-26 20:11:49 +02:00
|
|
|
From ad0fc24067501dccade31099a1cd96f049c9b280 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
|
2018-07-23 10:39:55 +02:00
|
|
|
index f8b7d695c6..a47a51a412 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
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -87,7 +87,7 @@ public class UserCache {
|
2016-07-17 03:19:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
gameprofilerepository.findProfilesByNames(new String[] { s}, Agent.MINECRAFT, profilelookupcallback);
|
|
|
|
- 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);
|
|
|
|
|
|
|
|
--
|
2018-07-04 09:55:24 +02:00
|
|
|
2.18.0
|
2016-07-17 03:19:25 +02:00
|
|
|
|