Allow moderators to uncm other clients

- Adds "UNCM" permissions for uncming
This commit is contained in:
MangosArentLiterature 2021-04-16 18:25:12 -05:00
parent 466089ad84
commit b7f8f78690
2 changed files with 31 additions and 3 deletions

View File

@ -219,6 +219,7 @@ class AOClient : public QObject {
{"ANNOUNCE", 1ULL << 8 },
{"MODCHAT", 1ULL << 9 },
{"MUTE", 1ULL << 10},
{"UNCM", 1ULL << 11},
{"SUPER", ~0ULL },
};

View File

@ -61,9 +61,36 @@ void AOClient::cmdCM(int argc, QStringList argv)
void AOClient::cmdUnCM(int argc, QStringList argv)
{
AreaData* area = server->areas[current_area];
int removed = area->owners.removeAll(id);
area->invited.removeAll(id);
sendServerMessage("You are no longer CM in this area.");
int uid;
if (area->owners.isEmpty()) {
sendServerMessage("There are no CMs in this area.");
return;
}
else if (argc == 0) {
uid = id;
sendServerMessage("You are no longer CM in this area.");
}
else if (checkAuth(ACLFlags.value("UNCM")) && argc == 1) {
bool conv_ok = false;
uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
if (!area->owners.contains(uid)) {
sendServerMessage("That user is not CMed.");
return;
}
AOClient* target = server->getClientByID(uid);
target->sendServerMessage("You have been unCMed by a moderator.");
}
else {
sendServerMessage("Invalid command.");
return;
}
area->owners.removeAll(uid);
area->invited.removeAll(uid);
arup(ARUPType::CM, true);
if (area->owners.isEmpty()) {
area->invited.clear();