X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_exemptchanops.cpp;h=61b20fc9bf8740d07970a870c639039b3e691f62;hb=09f35749aa7bf7dc20951d85bad60de3d219e4eb;hp=b1d7b35dfc31aa2066649c81a961723af2b3e829;hpb=d5a6054948502625d7f0c235f6faaeea58734de5;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_exemptchanops.cpp b/src/modules/m_exemptchanops.cpp index b1d7b35df..61b20fc9b 100644 --- a/src/modules/m_exemptchanops.cpp +++ b/src/modules/m_exemptchanops.cpp @@ -26,9 +26,13 @@ class ExemptChanOps : public ListModeBase { public: - ExemptChanOps(Module* Creator) : ListModeBase(Creator, "exemptchanops", 'X', "End of channel exemptchanops list", 954, 953, false, "exemptchanops") { } + ExemptChanOps(Module* Creator) + : ListModeBase(Creator, "exemptchanops", 'X', "End of channel exemptchanops list", 954, 953, false) + { + } - bool ValidateParam(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE { + bool ValidateParam(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE + { std::string::size_type p = word.find(':'); if (p == std::string::npos) { @@ -51,21 +55,6 @@ class ExemptChanOps : public ListModeBase return true; } - - void TellListTooLong(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE - { - user->WriteNumeric(959, chan->name, word, "Channel exemptchanops list is full"); - } - - void TellAlreadyOnList(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE - { - user->WriteNumeric(957, chan->name, InspIRCd::Format("The word %s is already on the exemptchanops list", word.c_str())); - } - - void TellNotSet(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE - { - user->WriteNumeric(958, chan->name, "No such exemptchanops word is set"); - } }; class ExemptHandler : public CheckExemption::EventListener @@ -127,7 +116,7 @@ class ModuleExemptChanOps : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Provides the ability to allow channel operators to be exempt from certain modes.",VF_VENDOR); + return Version("Provides the ability to allow channel operators to be exempt from certain modes", VF_VENDOR); } void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE