From 6a69ec833f19cb3493dcfd79f5b97511f778507b Mon Sep 17 00:00:00 2001 From: Andre601 <11576465+Andre601@users.noreply.github.com> Date: Fri, 1 Jan 2021 18:19:07 +0100 Subject: [PATCH] Use getPlayerExact --- .../clip/placeholderapi/commands/impl/local/CommandParse.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandParse.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandParse.java index a4cd2b3..3bd8bc2 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandParse.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandParse.java @@ -211,7 +211,7 @@ public final class CommandParse extends PlaceholderCommand { @Nullable private OfflinePlayer resolvePlayer(@NotNull final String name) { - OfflinePlayer target = Bukkit.getPlayer(name); + OfflinePlayer target = Bukkit.getPlayerExact(name); if (target == null) { // Not the best option, but Spigot doesn't offer a good replacement (as usual)