summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/modules/m_noctcp.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/modules/m_noctcp.cpp b/src/modules/m_noctcp.cpp
index bf7cb8d62..1b1f56397 100644
--- a/src/modules/m_noctcp.cpp
+++ b/src/modules/m_noctcp.cpp
@@ -27,8 +27,11 @@ class ModuleNoCTCP : public Module
{
if ((text.length()) && (text[0] == '\1'))
{
- WriteServ(user->fd,"492 %s %s :Can't send CTCP to channel (+C set)",user->nick, c->name);
- return 1;
+ if (strncmp(text.c_str(),"\1ACTION ",8))
+ {
+ WriteServ(user->fd,"492 %s %s :Can't send CTCP to channel (+C set)",user->nick, c->name);
+ return 1;
+ }
}
}
}
@@ -44,8 +47,11 @@ class ModuleNoCTCP : public Module
{
if ((text.length()) && (text[0] == '\1'))
{
- WriteServ(user->fd,"492 %s %s :Can't send CTCP to channel (+C set)",user->nick, c->name);
- return 1;
+ if (strncmp(text.c_str(),"\1ACTION ",8))
+ {
+ WriteServ(user->fd,"492 %s %s :Can't send CTCP to channel (+C set)",user->nick, c->name);
+ return 1;
+ }
}
}
}