Inform clients they are not logged in

This commit is contained in:
MangosArentLiterature 2021-05-08 23:28:27 -05:00
parent b7d95de9dc
commit 7b100ba2ad

View File

@ -238,8 +238,10 @@ void AOClient::cmdChangePassword(int argc, QStringList argv)
QString username;
QString password;
if (argc == 1) {
if (moderator_name.isEmpty())
if (moderator_name.isEmpty()) {
sendServerMessage("You are not logged in.");
return;
}
username = moderator_name;
password = argv[0];
}