aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_exemptchanops.cpp
diff options
context:
space:
mode:
authorGravatar Peter Powell2018-12-09 06:43:55 +0000
committerGravatar Peter Powell2018-12-09 06:57:10 +0000
commitdb5610a5640749ab7dafab82c1ef1553f3d78615 (patch)
tree9302c5ecc1b8ac299e379ef078ced426db63b8b3 /src/modules/m_exemptchanops.cpp
parentUse ERR_BANLISTFULL in the chanfilter and exemptchanops modules. (diff)
Use consistent numerics when a mode already exists or doesn't exist.
Diffstat (limited to 'src/modules/m_exemptchanops.cpp')
-rw-r--r--src/modules/m_exemptchanops.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/modules/m_exemptchanops.cpp b/src/modules/m_exemptchanops.cpp
index 411d0dd15..058a16e6c 100644
--- a/src/modules/m_exemptchanops.cpp
+++ b/src/modules/m_exemptchanops.cpp
@@ -51,16 +51,6 @@ class ExemptChanOps : public ListModeBase
return true;
}
-
- 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