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 }