check for valid auth_type

Actually check if auth_type is set to advanced, otherwise warn about invalid settings
This commit is contained in:
MangosArentLiterature 2021-04-03 16:24:34 -05:00
parent 737f2f102e
commit f09adf4901

View File

@ -52,7 +52,7 @@ void AOClient::cmdLogin(int argc, QStringList argv)
}
server->areas.value(current_area)->logger->logLogin(this, authenticated, "moderator");
}
else {
else if (auth_type == "advanced") {
if (argc < 2) {
sendServerMessage("You must specify a username and a password");
return;
@ -73,6 +73,10 @@ void AOClient::cmdLogin(int argc, QStringList argv)
}
server->areas.value(current_area)->logger->logLogin(this, authenticated, username);
}
else {
qWarning() << "config.ini has an unrecognized auth_type!";
sendServerMessage("Config.ini contains an invalid auth_type, please check your config.");
}
}
void AOClient::cmdGetAreas(int argc, QStringList argv)