Not sure if this will do anything bad. But it means we don't use their names if non-skinned player

This commit is contained in:
libraryaddict 2014-09-02 20:32:52 +12:00
parent af9dfb8d6e
commit 56b5933837

View File

@ -389,6 +389,7 @@ public class DisguiseUtilities {
final WrappedGameProfile gameProfile = lookupGameProfile(origName);
Bukkit.getScheduler().runTask(libsDisguises, new Runnable() {
public void run() {
if (!LibVersion.is1_7_6() || !gameProfile.getProperties().isEmpty()) {
if (gameProfiles.containsKey(playerName) && gameProfiles.get(playerName) == null) {
gameProfiles.put(playerName, gameProfile);
}
@ -402,6 +403,7 @@ public class DisguiseUtilities {
}
}
}
}
});
} catch (Exception e) {
if (gameProfiles.containsKey(playerName) && gameProfiles.get(playerName) == null) {