diff options
Diffstat (limited to 'src/modules/cs_tban.c')
-rw-r--r-- | src/modules/cs_tban.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/cs_tban.c b/src/modules/cs_tban.c index 9f8f2a2db..1aea779f5 100644 --- a/src/modules/cs_tban.c +++ b/src/modules/cs_tban.c @@ -72,14 +72,14 @@ class CommandCSTBan : public Command bool OnHelp(User *u, const ci::string &subcommand) { - this->OnSyntaxError(u); + this->OnSyntaxError(u, ""); ircdproto->SendMessage(findbot(s_ChanServ), u->nick, " "); me->NoticeLang(s_ChanServ, u, TBAN_HELP_DETAIL); return true; } - void OnSyntaxError(User *u) + void OnSyntaxError(User *u, const ci::string &subcommand) { me->NoticeLang(s_ChanServ, u, TBAN_SYNTAX); } |