move notice functionality to helper function
This commit is contained in:
parent
7b1845aa8d
commit
c6b0c5f6de
@ -1929,6 +1929,16 @@ class AOClient : public QObject {
|
||||
* @return True if the password meets the requirements, otherwise false.
|
||||
*/
|
||||
bool checkPasswordRequirements(QString username, QString password);
|
||||
|
||||
/**
|
||||
* @brief Sends a server notice.
|
||||
*
|
||||
* @param notice The notice to send out.
|
||||
*
|
||||
* @param global Whether or not the notice should be server-wide.
|
||||
*/
|
||||
void sendNotice(QString notice, bool global = false);
|
||||
|
||||
|
||||
/**
|
||||
* @brief Checks if a testimony contains '<' or '>'.
|
||||
|
@ -208,3 +208,16 @@ bool AOClient::checkPasswordRequirements(QString username, QString password)
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void AOClient::sendNotice(QString notice, bool global)
|
||||
{
|
||||
QString message = "A moderator sent this ";
|
||||
message += (global ? "server-wide " : "");
|
||||
message += "notice:\n\n" + notice;
|
||||
sendServerMessageArea(message);
|
||||
AOPacket packet("BB", {message});
|
||||
if (global)
|
||||
server->broadcast(packet);
|
||||
else
|
||||
server->broadcast(packet, current_area);
|
||||
}
|
||||
|
@ -517,13 +517,9 @@ void AOClient::cmdUpdateBan(int argc, QStringList argv)
|
||||
|
||||
void AOClient::cmdNotice(int argc, QStringList argv)
|
||||
{
|
||||
QString message = "A moderator sent this notice:\n\n" + argv.join(" ");
|
||||
sendServerMessageArea(message);
|
||||
server->broadcast(AOPacket("BB", {message}), current_area);
|
||||
sendNotice(argv.join(" "));
|
||||
}
|
||||
void AOClient::cmdNoticeGlobal(int argc, QStringList argv)
|
||||
{
|
||||
QString message = "A moderator sent this server-wide notice:\n\n" + argv.join(" ");
|
||||
sendServerBroadcast(message);
|
||||
server->broadcast(AOPacket("BB", {message}));
|
||||
sendNotice(argv.join(" "), true);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user