Quote Originally Posted by GodSentDeath View Post
I got that, i mean the PlayerLoad method that verify when the player try to login with the username and password of the forum
Code:
if(lobbyPlayer == null) {
			boolean first = ForumIntegration.verify(def.getName(), def.getPassword());
			boolean second = ForumIntegration.verify(def.getName(), def.getPassword());
			if(code == 2 && !first && !second) {
				code = Constants.INVALID_PASSWORD;
			}
		}