Add /mutepm

This commit is contained in:
MangosArentLiterature 2021-04-17 14:15:04 -05:00
parent 466089ad84
commit 388ad345a5
2 changed files with 24 additions and 0 deletions

View File

@ -249,6 +249,11 @@ class AOClient : public QObject {
*/
bool is_afk = false;
/**
* @brief If true, the client will not recieve PM messages.
*/
bool pm_mute = false;
/**
* @brief Timer for tracking user interaction. Automatically restarted whenever a user interacts (i.e. sends any packet besides CH)
*/
@ -1438,6 +1443,13 @@ class AOClient : public QObject {
*/
void cmdUnShake(int argc, QStringList argv);
/**
* @brief Toggles whether a client will recieve @ref cmdPM private messages or not.
*
* @details No arguments.
*/
void cmdMutePM(int argc, QStringList argv);
///@}
/**
@ -1850,6 +1862,7 @@ class AOClient : public QObject {
{"allowiniswap", {ACLFlags.value("CM"), 0, &AOClient::cmdAllowIniswap}},
{"allow_iniswap", {ACLFlags.value("CM"), 0, &AOClient::cmdAllowIniswap}},
{"afk", {ACLFlags.value("NONE"), 0, &AOClient::cmdAfk}},
{"mutepm", {ACLFlags.value("NONE"), 0, &AOClient::cmdMutePM}},
};
/**

View File

@ -116,6 +116,10 @@ void AOClient::cmdPM(int arc, QStringList argv)
sendServerMessage("No client with that ID found.");
return;
}
if (target_client->pm_mute) {
sendServerMessage("That user is not recieving PMs.");
return;
}
QString message = argv.join(" "); //...which means it will not end up as part of the message
target_client->sendServerMessage("Message from " + ooc_name + " (" + QString::number(id) + "): " + message);
}
@ -274,3 +278,10 @@ void AOClient::cmdUnShake(int argc, QStringList argv)
}
target->is_shaken = false;
}
void AOClient::cmdMutePM(int argc, QStringList argv)
{
pm_mute = !pm_mute;
QString str_en = pm_mute ? "muted" : "unmuted";
sendServerMessage("PM's are now " + str_en);
}