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:
parent
22cfee962b
commit
6dfffe76f1
@ -78,7 +78,7 @@ void AOClient::cmdUnCM(int argc, QStringList argv)
|
||||
l_uid = m_id;
|
||||
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;
|
||||
l_uid = argv[0].toInt(&conv_ok);
|
||||
if (!conv_ok) {
|
||||
@ -94,10 +94,11 @@ void AOClient::cmdUnCM(int argc, QStringList argv)
|
||||
sendServerMessage("No client with that ID found.");
|
||||
return;
|
||||
}
|
||||
sendServerMessage(l_target->m_ooc_name + " was successfully unCMed.");
|
||||
l_target->sendServerMessage("You have been unCMed by a moderator.");
|
||||
}
|
||||
else {
|
||||
sendServerMessage("Invalid command.");
|
||||
sendServerMessage("You do not have permission to unCM others.");
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user