We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cd5818 commit 56c8284Copy full SHA for 56c8284
AdvancedCore/src/main/java/com/bencodez/advancedcore/api/misc/PlayerManager.java
@@ -161,8 +161,9 @@ public String getUUID(String playerName) {
161
OfflinePlayer p = Bukkit.getOfflinePlayer(playerName);
162
return p.getUniqueId().toString();
163
} catch (Exception e) {
164
- e.printStackTrace();
165
- return getUUIDLookup(playerName);
+ plugin.getLogger().info("Unable to get UUID for: " + playerName);
+ plugin.debug(e);
166
+ return "";
167
}
168
169
0 commit comments