diff --git a/src/main/java/fr/xephi/authme/process/login/AsynchronousLogin.java b/src/main/java/fr/xephi/authme/process/login/AsynchronousLogin.java index 4e2f0d2b..46c97dc4 100644 --- a/src/main/java/fr/xephi/authme/process/login/AsynchronousLogin.java +++ b/src/main/java/fr/xephi/authme/process/login/AsynchronousLogin.java @@ -197,7 +197,7 @@ public class AsynchronousLogin implements AsynchronousProcess { limboService.muteMessageTask(player); service.send(player, MessageKey.USAGE_CAPTCHA, captchaManager.getCaptchaCodeOrGenerateNew(player.getName())); - } else if (emailService.hasAllInformation() && !auth.getEmail().equals("your@email.com")) { + } else if (emailService.hasAllInformation() && !Utils.isEmailEmpty(auth.getEmail())) { service.send(player, MessageKey.FORGOT_PASSWORD_MESSAGE); } }