Improve feedback and behaviour from /uncm

allow multiple arguments (discarding the rest and using the first)
give the moderator feedback that they successfully unCMed someone rather than only telling the target
tell those without permission they lack it rather than saying the command is invalid, as that implied /uncm didn't exist
This commit is contained in:
AwesomeAim 2022-06-29 03:21:10 -07:00 committed by Rosemary Witchaven
parent 22cfee962b
commit 6dfffe76f1

View File

@ -78,7 +78,7 @@ void AOClient::cmdUnCM(int argc, QStringList argv)
l_uid = m_id; l_uid = m_id;
sendServerMessage("You are no longer CM in this area."); sendServerMessage("You are no longer CM in this area.");
} }
else if (checkPermission(ACLRole::UNCM) && argc == 1) { else if (checkPermission(ACLRole::UNCM) && argc >= 1) {
bool conv_ok = false; bool conv_ok = false;
l_uid = argv[0].toInt(&conv_ok); l_uid = argv[0].toInt(&conv_ok);
if (!conv_ok) { if (!conv_ok) {
@ -94,10 +94,11 @@ void AOClient::cmdUnCM(int argc, QStringList argv)
sendServerMessage("No client with that ID found."); sendServerMessage("No client with that ID found.");
return; return;
} }
sendServerMessage(l_target->m_ooc_name + " was successfully unCMed.");
l_target->sendServerMessage("You have been unCMed by a moderator."); l_target->sendServerMessage("You have been unCMed by a moderator.");
} }
else { else {
sendServerMessage("Invalid command."); sendServerMessage("You do not have permission to unCM others.");
return; return;
} }