summaryrefslogtreecommitdiff
path: root/src/core/ns_help.c
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-10 19:34:31 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-10 19:34:31 +0000
commitd01df85cd11ddcc83fe58ec0ba7b170979a02555 (patch)
tree651aa9f79bf523d672fa410e5d093dd8bdb00acc /src/core/ns_help.c
parent1ed7d17b5dbcfae87cee82e7611ddd866b3427ea (diff)
More fixes.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1983 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/ns_help.c')
-rw-r--r--src/core/ns_help.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/ns_help.c b/src/core/ns_help.c
index 68351dba7..339b11f25 100644
--- a/src/core/ns_help.c
+++ b/src/core/ns_help.c
@@ -24,7 +24,7 @@ class CommandNSHelp : public Command
CommandReturn Execute(User *u, std::vector<std::string> &params)
{
- const char *cmd = params[0].c_str()
+ const char *cmd = params[0].c_str();
if (!stricmp(cmd, "SET LANGUAGE"))
{
int i;
@@ -34,6 +34,8 @@ class CommandNSHelp : public Command
}
else
mod_help_cmd(s_NickServ, u, NICKSERV, cmd);
+
+ return MOD_CONT;
}
void OnSyntaxError(User *u)