From 79c6e5e39501f96e2ea91ef4798fee9b16bbdba8 Mon Sep 17 00:00:00 2001 From: AwesomeAim <30537683+AwesomeAim@users.noreply.github.com> Date: Thu, 5 May 2022 22:58:56 -0700 Subject: [PATCH] Ensure /changepass always has arg 1 as the password Otherwise, the syntax is /changepass or /changepass , rather than /changepass 'Moderator', like how it's specified to be --- core/src/commands/authentication.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/core/src/commands/authentication.cpp b/core/src/commands/authentication.cpp index b0a5c3d..04c90cc 100644 --- a/core/src/commands/authentication.cpp +++ b/core/src/commands/authentication.cpp @@ -270,18 +270,16 @@ void AOClient::cmdLogout(int argc, QStringList argv) void AOClient::cmdChangePassword(int argc, QStringList argv) { QString l_username; - QString l_password; + QString l_password = argv[0]; if (argc == 1) { if (m_moderator_name.isEmpty()) { sendServerMessage("You are not logged in."); return; } l_username = m_moderator_name; - l_password = argv[0]; } else if (argc == 2 && checkAuth(ACLFlags.value("SUPER"))) { - l_username = argv[0]; - l_password = argv[1]; + l_username = argv[1]; } else { sendServerMessage("Invalid command syntax.");