2020-05-06 09:48:49 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2016-07-17 01:19:25 +00: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
|
|
|
|
|
|
|
|
|
2021-03-16 07:19:45 +00:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/players/UserCache.java b/src/main/java/net/minecraft/server/players/UserCache.java
|
2021-03-16 15:50:45 +00:00
|
|
|
index 2de2d84a56183435d641ba857472276821a70ae0..6c349128bdedc53003f043c9cb1210b4666aee33 100644
|
2021-03-16 07:19:45 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/players/UserCache.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/players/UserCache.java
|
2021-03-16 15:50:45 +00:00
|
|
|
@@ -91,7 +91,7 @@ public class UserCache {
|
2019-05-27 23:01:45 +00:00
|
|
|
gameprofilerepository.findProfilesByNames(new String[]{s}, Agent.MINECRAFT, profilelookupcallback);
|
2020-08-25 02:22:08 +00:00
|
|
|
GameProfile gameprofile = (GameProfile) atomicreference.get();
|
|
|
|
|
|
|
|
- if (!c() && gameprofile == null) {
|
|
|
|
+ if (!c() && gameprofile == null && !org.apache.commons.lang3.StringUtils.isBlank(s)) { // Paper - Don't lookup a profile with a blank name
|
2016-07-17 01:19:25 +00:00
|
|
|
UUID uuid = EntityHuman.a(new GameProfile((UUID) null, s));
|
|
|
|
|
2020-08-25 02:22:08 +00:00
|
|
|
gameprofile = new GameProfile(uuid, s);
|