2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2021-02-16 18:08:29 +01:00
|
|
|
index f61cf940f21288fc6e8faf9519d2366436146d1f..e89c92aded564fe689cc1aa8d0c83abb72f7b10c 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
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -89,7 +89,7 @@ public class UserCache {
|
2019-05-28 01:01:45 +02:00
|
|
|
gameprofilerepository.findProfilesByNames(new String[]{s}, Agent.MINECRAFT, profilelookupcallback);
|
2020-08-25 04:22:08 +02: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 03:19:25 +02:00
|
|
|
UUID uuid = EntityHuman.a(new GameProfile((UUID) null, s));
|
|
|
|
|
2020-08-25 04:22:08 +02:00
|
|
|
gameprofile = new GameProfile(uuid, s);
|