1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-09 16:17:37 +02:00

Extend getUser(Object) to match uuid and offline players.

This commit is contained in:
KHobbits
2014-05-30 21:49:16 +01:00
parent 99c890ce84
commit 5993466041
2 changed files with 11 additions and 0 deletions

View File

@@ -628,6 +628,14 @@ public class Essentials extends JavaPlugin implements net.ess3.api.IEssentials
{
return getUser((Player)base);
}
if (base instanceof org.bukkit.OfflinePlayer)
{
return getUser(((org.bukkit.OfflinePlayer)base).getUniqueId());
}
if (base instanceof UUID)
{
return getUser((UUID)base);
}
if (base instanceof String)
{
return getOfflineUser((String)base);

View File

@@ -349,11 +349,14 @@ public class Commandessentials extends EssentialsCommand
String name = args[1];
sender.sendMessage("Looking up UUID for " + name);
UUID onlineUUID = null;
for (Player player : server.getOnlinePlayers())
{
if (player.getName().equalsIgnoreCase(name))
{
sender.sendMessage("Online player: " + player.getUniqueId().toString());
onlineUUID = player.getUniqueId();
}
}