aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar Peter Powell2018-04-22 13:31:00 +0100
committerGravatar Peter Powell2018-04-22 13:31:00 +0100
commitba31d8080f75a0147d0b380f2c51251e024f0deb (patch)
treebbe926ced0451e1a75ca62e3854543c2e05f73c3 /src/modules
parentMerge tag 'v2.0.26' into master. (diff)
Replace ERR_{NOCTCPALLOWED,WORDFILTERED} with ERR_CANNOTSENDTOCHAN.
There is no reason for these responses to have their own numerics when other modules do not. The only thing this does is make life harder for client developers.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_censor.cpp2
-rw-r--r--src/modules/m_noctcp.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_censor.cpp b/src/modules/m_censor.cpp
index cb2bec85a..9044c90b1 100644
--- a/src/modules/m_censor.cpp
+++ b/src/modules/m_censor.cpp
@@ -71,7 +71,7 @@ class ModuleCensor : public Module
if (index->second.empty())
{
const std::string targname = target.type == MessageTarget::TYPE_CHANNEL ? target.Get<Channel>()->name : target.Get<User>()->nick;
- user->WriteNumeric(ERR_WORDFILTERED, targname, index->first.c_str(), "Your message contained a censored word, and was blocked");
+ user->WriteNumeric(ERR_CANNOTSENDTOCHAN, targname, index->first.c_str(), "Your message contained a censored word, and was blocked");
return MOD_RES_DENY;
}
diff --git a/src/modules/m_noctcp.cpp b/src/modules/m_noctcp.cpp
index 26077759a..dbfe55eac 100644
--- a/src/modules/m_noctcp.cpp
+++ b/src/modules/m_noctcp.cpp
@@ -53,7 +53,7 @@ class ModuleNoCTCP : public Module
if (!c->GetExtBanStatus(user, 'C').check(!c->IsModeSet(nc)))
{
- user->WriteNumeric(ERR_NOCTCPALLOWED, c->name, "Can't send CTCP to channel (+C set)");
+ user->WriteNumeric(ERR_CANNOTSENDTOCHAN, c->name, "Can't send CTCP to channel (+C set)");
return MOD_RES_DENY;
}
}