From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: oxygencraft <21054297+oxygencraft@users.noreply.github.com> Date: Sun, 25 Oct 2020 18:35:58 +1100 Subject: [PATCH] Add getOfflinePlayerIfCached(String) diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java index af5ce8bef3529a008a4f105e3812e3aec20e90fa..7cef6511b9b986fd5b3c59072e099f7a4ebb5fc4 100644 --- a/src/main/java/org/bukkit/Bukkit.java +++ b/src/main/java/org/bukkit/Bukkit.java @@ -1230,6 +1230,27 @@ public final class Bukkit { return server.getOfflinePlayer(name); } + // Paper start + /** + * Gets the player by the given name, regardless if they are offline or + * online. + *
+ * This will not make a web request to get the UUID for the given name, + * thus this method will not block. However this method will return + * {@code null} if the player is not cached. + *
+ * + * @param name the name of the player to retrieve + * @return an offline player if cached, {@code null} otherwise + * @see #getOfflinePlayer(String) + * @see #getOfflinePlayer(java.util.UUID) + */ + @Nullable + public static OfflinePlayer getOfflinePlayerIfCached(@NotNull String name) { + return server.getOfflinePlayerIfCached(name); + } + // Paper end + /** * Gets the player by the given UUID, regardless if they are offline or * online. diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java index 5b4fc4fa5122cea783e64ff61ae43e5ce45f6af6..9dcd94bc1aedac589192f4bb07d7ae821586f58a 100644 --- a/src/main/java/org/bukkit/Server.java +++ b/src/main/java/org/bukkit/Server.java @@ -1025,6 +1025,25 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi @NotNull public OfflinePlayer getOfflinePlayer(@NotNull String name); + // Paper start + /** + * Gets the player by the given name, regardless if they are offline or + * online. + *+ * This will not make a web request to get the UUID for the given name, + * thus this method will not block. However this method will return + * {@code null} if the player is not cached. + *
+ * + * @param name the name of the player to retrieve + * @return an offline player if cached, {@code null} otherwise + * @see #getOfflinePlayer(String) + * @see #getOfflinePlayer(java.util.UUID) + */ + @Nullable + public OfflinePlayer getOfflinePlayerIfCached(@NotNull String name); + // Paper end + /** * Gets the player by the given UUID, regardless if they are offline or * online.