swap out ternary for simpler if

This commit is contained in:
in1tiate 2021-08-10 00:29:58 -05:00
parent c6b0c5f6de
commit 91131c8970

View File

@ -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});