diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-12-19 00:06:43 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-12-19 00:06:43 +0000 |
commit | ab658faa91456fa1e7da2e132549ac5dc7828fae (patch) | |
tree | 59b2a8c0567f81d07c7210ffea1b3a9fdfa384b2 | |
parent | 2cf1042582a90622fde95f6f0ba20c551a04c369 (diff) |
Fix compile error.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1847 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/protocol/inspircd12.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/inspircd12.cpp b/src/protocol/inspircd12.cpp index d39e95091..c7edecd82 100644 --- a/src/protocol/inspircd12.cpp +++ b/src/protocol/inspircd12.cpp @@ -1169,7 +1169,7 @@ int anope_event_privmsg(const char *source, int ac, const char **av) BotInfo *bi = findbot(av[0]); if (!u) - return; // likely a message from a server, which can happen. + return MOD_CONT; // likely a message from a server, which can happen. m_privmsg(u->nick, bi ? bi->nick: av[0], av[1]); return MOD_CONT; |