From a7845520740df0f1c82982a5589ef4f81870f73f Mon Sep 17 00:00:00 2001 From: Aikar Date: Sat, 17 Mar 2018 22:38:53 -0400 Subject: [PATCH] (DEPLOYED ACF) Updated JavaDocs --- .../src-html/co/aikar/commands/BukkitCommandContexts.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/acf-bukkit/src-html/co/aikar/commands/BukkitCommandContexts.html b/docs/acf-bukkit/src-html/co/aikar/commands/BukkitCommandContexts.html index 9beb4a27..9d215b05 100644 --- a/docs/acf-bukkit/src-html/co/aikar/commands/BukkitCommandContexts.html +++ b/docs/acf-bukkit/src-html/co/aikar/commands/BukkitCommandContexts.html @@ -137,7 +137,7 @@ 129 uuid = UUID.fromString(name); 130 } 131 OfflinePlayer offlinePlayer = uuid != null ? Bukkit.getOfflinePlayer(uuid) : Bukkit.getOfflinePlayer(name); -132 if (offlinePlayer == null) { +132 if (offlinePlayer == null || (!offlinePlayer.hasPlayedBefore() && !offlinePlayer.isOnline())) { 133 throw new InvalidCommandArgument(MinecraftMessageKeys.NO_PLAYER_FOUND_OFFLINE, 134 "{search}", name); 135 }