From f09adf4901a612f5f672d29e55f9a9e435ef228f Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sat, 3 Apr 2021 16:24:34 -0500 Subject: [PATCH] check for valid auth_type Actually check if auth_type is set to advanced, otherwise warn about invalid settings --- src/commands.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/commands.cpp b/src/commands.cpp index 3f3aa4e..11688a2 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -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)