Need to verify auth exist before get it

This commit is contained in:
Xephi 2014-08-27 19:24:09 +02:00
parent 469a56258d
commit 3a2e58d18a

View File

@ -389,8 +389,8 @@ public class AuthMePlayerListener implements Listener {
// Little workaround to be sure registered player is the same as this
if (player.hasPlayedBefore())
// Make sure it's the correct player
if (data.getAuth(lowname).getIp().equalsIgnoreCase(player.getAddress().getAddress().getHostAddress()))
if (data.isAuthAvailable(lowname))
if (data.isAuthAvailable(lowname))
if (data.getAuth(lowname).getIp().equalsIgnoreCase(player.getAddress().getAddress().getHostAddress()))
data.updateName(lowname, name);
}