From 91131c8970ebd68d196a2fa0987431982a7fc553 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Tue, 10 Aug 2021 00:29:58 -0500 Subject: [PATCH] swap out ternary for simpler if --- core/src/commands/command_helper.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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});