From 43ce86ff126c447287a7cd04f371938df570247b Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Fri, 9 Apr 2021 15:07:09 -0500 Subject: [PATCH] Add /ungimp --- include/aoclient.h | 1 + src/commands.cpp | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/include/aoclient.h b/include/aoclient.h index 3c2c5c1..d06c073 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1648,6 +1648,7 @@ class AOClient : public QObject { {"lm", {ACLFlags.value("MODCHAT"), 1, &AOClient::cmdLM}}, {"allow_blankposting", {ACLFlags.value("MODCHAT"), 0, &AOClient::cmdAllow_Blankposting}}, {"gimp", {ACLFlags.value("MUTE"), 1, &AOClient::cmdGimp}}, + {"ungimp", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnGimp}}, }; /** diff --git a/src/commands.cpp b/src/commands.cpp index 14707f3..2b2ba26 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1296,6 +1296,26 @@ void AOClient::cmdGimp(int argc, QStringList argv) target->is_gimped = true; } +void AOClient::cmdUnGimp(int argc, QStringList argv) +{ + bool conv_ok = false; + int uid = argv[0].toInt(&conv_ok); + if (!conv_ok) { + sendServerMessage("Invalid user ID."); + return; + } + + AOClient* target = server->getClientByID(uid); + + if (!(target->is_gimped)) + sendServerMessage("That player is not gimped!"); + else { + sendServerMessage("Ungimped player."); + target->sendServerMessage("A moderator has ungimped you! " + getReprimand(true)); + } + target->is_gimped = false; +} + QStringList AOClient::buildAreaList(int area_idx) { QStringList entries;