diff options
author | Adam <Adam@anope.org> | 2012-01-10 17:58:56 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-01-10 17:58:56 -0500 |
commit | a52ed70ea034cbac9bf3effbff8cdd8208d57d43 (patch) | |
tree | a39e76f8a8065da2b0c0805933d1acbde8c278d8 /src/protocol.cpp | |
parent | 7c03e60299c98106cff3b02c06bd7c5b7b0830f3 (diff) |
Don't ever attempt to process CTCPs as regular messages
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r-- | src/protocol.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index 218478757..1bdebcc79 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -429,6 +429,7 @@ bool IRCdMessage::OnPrivmsg(const Anope::string &source, const std::vector<Anope Module *enc = ModuleManager::FindFirstOf(ENCRYPTION); ircdproto->SendCTCP(bi, u->nick, "VERSION Anope-%s %s :%s - (%s) -- %s", Anope::Version().c_str(), Config->ServerName.c_str(), ircd->name, enc ? enc->name.c_str() : "unknown", Anope::VersionBuildString().c_str()); } + return true; } bi->OnMessage(u, message); |