Opps. Now it grabs it from a online player

This commit is contained in:
libraryaddict 2014-04-11 04:57:14 +12:00
parent 4a63ff07ee
commit 7af61ee7df

View File

@ -299,11 +299,11 @@ public class DisguiseUtilities {
} }
public static UUID getUUID(final Disguise disguise, final String playerName) { public static UUID getUUID(final Disguise disguise, final String playerName) {
/* if (LibVersion.getGameVersion() == LibVersion.V1_7) { if (LibVersion.getGameVersion() == LibVersion.V1_7) {
Player p = Bukkit.getPlayerExact(playerName); Player p = Bukkit.getPlayerExact(playerName);
if (p != null) { if (p != null) {
return p.getUniqueId(); return p.getUniqueId();
} else if (disguise != null) { } /*else if (disguise != null) {
if (namesUuids.containsKey(playerName)) { if (namesUuids.containsKey(playerName)) {
if (namesUuids.get(playerName) != null) { if (namesUuids.get(playerName) != null) {
return UUID.fromString(namesUuids.get(playerName)); return UUID.fromString(namesUuids.get(playerName));
@ -341,8 +341,8 @@ public class DisguiseUtilities {
} }
}); });
} }
} }*/
}*/ }
return null; return null;
} }