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
|
2020-08-25 04:22:08 +02:00
|
|
|
index 15222ed19f049b7465a43a8651584a8a4c5fd666..7171bdf7fb0489e9678588dfa33410984015ea3f 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);
|