mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 02:10:30 +01:00
c7f1eed0bf
3beb7729816 a77ed5758a7 52c130fc6d9
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
From 3ffb68932cffcba61c80b3ca6176c208f05bb89c Mon Sep 17 00:00:00 2001
|
|
From: md_5 <git@md-5.net>
|
|
Date: Sun, 20 Apr 2014 18:58:00 +1000
|
|
Subject: [PATCH] Don't special case 'invalid' usernames for UUIDs.
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
index 31a7a87..8964a18 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
@@ -1277,11 +1277,6 @@ public final class CraftServer implements Server {
|
|
Validate.notNull(name, "Name cannot be null");
|
|
com.google.common.base.Preconditions.checkArgument( !org.apache.commons.lang.StringUtils.isBlank( name ), "Name cannot be blank" ); // Spigot
|
|
|
|
- // If the name given cannot ever be a valid username give a dummy return, for scoreboard plugins
|
|
- if (!validUserPattern.matcher(name).matches()) {
|
|
- return new CraftOfflinePlayer(this, new GameProfile(invalidUserUUID, name));
|
|
- }
|
|
-
|
|
OfflinePlayer result = getPlayerExact(name);
|
|
if (result == null) {
|
|
// This is potentially blocking :(
|
|
--
|
|
2.1.0
|
|
|