mirror of
https://github.com/TotalFreedomMC/OpenInv.git
synced 2024-12-23 00:15:08 +00:00
Merge pull request #29 from ShadowRanger/master
Fix & improve UUID retrieval
This commit is contained in:
commit
4f40459b96
1 changed files with 21 additions and 20 deletions
|
@ -34,16 +34,21 @@ public class UUIDUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
|
private static UUID getUUIDLocally(String name) {
|
||||||
|
OfflinePlayer offlinePlayer = Bukkit.getOfflinePlayer(name);
|
||||||
|
return offlinePlayer.hasPlayedBefore() ? offlinePlayer.getUniqueId() : null;
|
||||||
|
}
|
||||||
|
|
||||||
public static UUID getUUIDOf(String name) {
|
public static UUID getUUIDOf(String name) {
|
||||||
UUID uuid = null;
|
UUID uuid;
|
||||||
Player player = getPlayer(name);
|
Player player = getPlayer(name);
|
||||||
|
|
||||||
if (player != null) {
|
if (player != null) {
|
||||||
// Player was found online
|
|
||||||
uuid = player.getUniqueId();
|
uuid = player.getUniqueId();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Player was not found online. Fetch their UUID instead
|
if (Bukkit.getServer().getOnlineMode()) {
|
||||||
|
if (!Bukkit.getServer().isPrimaryThread()) {
|
||||||
UUIDFetcher fetcher = new UUIDFetcher(Arrays.asList(name));
|
UUIDFetcher fetcher = new UUIDFetcher(Arrays.asList(name));
|
||||||
Map<String, UUID> response;
|
Map<String, UUID> response;
|
||||||
|
|
||||||
|
@ -52,17 +57,13 @@ public class UUIDUtil {
|
||||||
uuid = response.get(name.toLowerCase());
|
uuid = response.get(name.toLowerCase());
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
||||||
/*
|
uuid = getUUIDLocally(name);
|
||||||
Bukkit.getServer().getLogger().warning("Exception while running UUIDFetcher");
|
|
||||||
e.printStackTrace();
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Failed to retrieve with UUIDFetcher, server might be offline?
|
|
||||||
// Fallback on searching for the player via their name
|
|
||||||
OfflinePlayer offlinePlayer = Bukkit.getOfflinePlayer(name);
|
|
||||||
if (offlinePlayer != null) {
|
|
||||||
uuid = offlinePlayer.getUniqueId();
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
uuid = getUUIDLocally(name);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
uuid = getUUIDLocally(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue