swap out ternary for simpler if
This commit is contained in:
parent
c6b0c5f6de
commit
91131c8970
@ -212,7 +212,8 @@ bool AOClient::checkPasswordRequirements(QString username, QString password)
|
|||||||
void AOClient::sendNotice(QString notice, bool global)
|
void AOClient::sendNotice(QString notice, bool global)
|
||||||
{
|
{
|
||||||
QString message = "A moderator sent this ";
|
QString message = "A moderator sent this ";
|
||||||
message += (global ? "server-wide " : "");
|
if (global)
|
||||||
|
message += "server-wide ";
|
||||||
message += "notice:\n\n" + notice;
|
message += "notice:\n\n" + notice;
|
||||||
sendServerMessageArea(message);
|
sendServerMessageArea(message);
|
||||||
AOPacket packet("BB", {message});
|
AOPacket packet("BB", {message});
|
||||||
|
Loading…
Reference in New Issue
Block a user