From 7b100ba2adc6bdf289b6c709cf461b93443bcc70 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sat, 8 May 2021 23:28:27 -0500 Subject: [PATCH] Inform clients they are not logged in --- src/commands/authentication.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/authentication.cpp b/src/commands/authentication.cpp index afe97b3..4ab5c8a 100644 --- a/src/commands/authentication.cpp +++ b/src/commands/authentication.cpp @@ -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]; }