check for valid auth_type
Actually check if auth_type is set to advanced, otherwise warn about invalid settings
This commit is contained in:
parent
737f2f102e
commit
f09adf4901
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user