diff --git a/core/src/commands/command_helper.cpp b/core/src/commands/command_helper.cpp index 6f17f0b..eda5890 100644 --- a/core/src/commands/command_helper.cpp +++ b/core/src/commands/command_helper.cpp @@ -212,7 +212,8 @@ bool AOClient::checkPasswordRequirements(QString username, QString password) void AOClient::sendNotice(QString notice, bool global) { QString message = "A moderator sent this "; - message += (global ? "server-wide " : ""); + if (global) + message += "server-wide "; message += "notice:\n\n" + notice; sendServerMessageArea(message); AOPacket packet("BB", {message});