2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Thu, 22 Mar 2018 01:39:28 -0400
|
|
|
|
Subject: [PATCH] getPlayerUniqueId API
|
|
|
|
|
|
|
|
Gets the unique ID of the player currently known as the specified player name
|
|
|
|
In Offline Mode, will return an Offline UUID
|
|
|
|
|
|
|
|
This is a more performant way to obtain a UUID for a name than loading an OfflinePlayer
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
|
2022-12-11 01:50:32 +01:00
|
|
|
index ec1af46667d8590ea218370249286f86652f3ac4..aa4217c87756cffe774aaa2d390217b9056c4b95 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Bukkit.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Bukkit.java
|
2022-08-09 09:18:08 +02:00
|
|
|
@@ -657,6 +657,20 @@ public final class Bukkit {
|
2021-06-11 14:02:28 +02:00
|
|
|
return server.getPlayer(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * Gets the unique ID of the player currently known as the specified player name
|
|
|
|
+ * In Offline Mode, will return an Offline UUID
|
|
|
|
+ *
|
|
|
|
+ * @param playerName the player name to look up the unique ID for
|
|
|
|
+ * @return A UUID, or null if that player name is not registered with Minecraft and the server is in online mode
|
|
|
|
+ */
|
|
|
|
+ @Nullable
|
|
|
|
+ public static UUID getPlayerUniqueId(@NotNull String playerName) {
|
|
|
|
+ return server.getPlayerUniqueId(playerName);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Gets the plugin manager for interfacing with plugins.
|
|
|
|
*
|
|
|
|
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
2022-12-11 01:50:32 +01:00
|
|
|
index 8539bac19bf9ba1a66689a9af90e088a03f9c152..c46cae77e6a1d3f01b08ff03407eb1a564d000de 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Server.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Server.java
|
2022-08-09 09:18:08 +02:00
|
|
|
@@ -559,6 +559,18 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
|
2021-06-11 14:02:28 +02:00
|
|
|
@Nullable
|
|
|
|
public Player getPlayer(@NotNull UUID id);
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * Gets the unique ID of the player currently known as the specified player name
|
|
|
|
+ * In Offline Mode, will return an Offline UUID
|
|
|
|
+ *
|
|
|
|
+ * @param playerName the player name to look up the unique ID for
|
|
|
|
+ * @return A UUID, or null if that player name is not registered with Minecraft and the server is in online mode
|
|
|
|
+ */
|
|
|
|
+ @Nullable
|
|
|
|
+ public UUID getPlayerUniqueId(@NotNull String playerName);
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Gets the plugin manager for interfacing with plugins.
|
|
|
|
*
|