Merge pull request #2854 from spjspj/master

Implement Parallax Nexus
This commit is contained in:
spjspj 2017-02-11 20:13:32 +11:00 committed by GitHub
commit d30e959f43
3 changed files with 85 additions and 0 deletions

View file

@ -115,6 +115,10 @@ public class Session {
String ok = "Sent a registration confirmation / initial password email to " + email + " for " + userName;
logger.info(ok);
sendInfoMessageToClient(ok);
} else if (Main.isTestMode()) {
String ok = "Server is in test mode. Your account is registered with a password of " + password + " for " + userName;
logger.info(ok);
sendInfoMessageToClient(ok);
} else {
String err = "Failed sending a registration confirmation / initial password email to " + email + " for " + userName;
logger.error(err);