mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
54dd19b818
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 18cda936 Fix variant of unloadChunkRequest that was incorrectly never deprecated 00763e1b Deprecate some methods 35a83d54 SPIGOT-4572: Make default no permission message clearer 6163343d Fix some misplaced material enum entries 8736469c Fix typo in TechnicalPiston documentation CraftBukkit Changes:0c715b32
SPIGOT-4579: Shulker boxes not dropping in creative50fbc3f1
SPIGOT-4576: Fix attributes in itemstack internal data being lost8059a937
SPIGOT-4577: Fix loss of int/double custom tags when serialized to yaml07e504c3
Clarify exception thrown when setting drop chance for player inventory98b862ad
Fix duplicate iron golem add843cee65
Fix a bunch of duplicate EntityCombustEvent calls43855624
SPIGOT-4571: EntityCombustEvent not firing for phantoms
62 lines
2.1 KiB
Diff
62 lines
2.1 KiB
Diff
From a6af67f99eedf4c5f95deb04a8f4bac3be154a7f 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
|
|
index bc04472e..bd246827 100644
|
|
--- a/src/main/java/org/bukkit/Bukkit.java
|
|
+++ b/src/main/java/org/bukkit/Bukkit.java
|
|
@@ -435,6 +435,20 @@ public final class Bukkit {
|
|
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(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
|
|
index 9f3ffb16..5eb1d371 100644
|
|
--- a/src/main/java/org/bukkit/Server.java
|
|
+++ b/src/main/java/org/bukkit/Server.java
|
|
@@ -365,6 +365,18 @@ public interface Server extends PluginMessageRecipient {
|
|
*/
|
|
public Player getPlayer(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(String playerName);
|
|
+ // Paper end
|
|
+
|
|
/**
|
|
* Gets the plugin manager for interfacing with plugins.
|
|
*
|
|
--
|
|
2.20.1
|
|
|