diff options
Diffstat (limited to 'src/core/ns_help.c')
-rw-r--r-- | src/core/ns_help.c | 4 |
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> ¶ms) { - 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) |