diff options
Diffstat (limited to 'modules/chanserv/chanserv.cpp')
-rw-r--r-- | modules/chanserv/chanserv.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/chanserv/chanserv.cpp b/modules/chanserv/chanserv.cpp index bd86410c8..4fcf3c097 100644 --- a/modules/chanserv/chanserv.cpp +++ b/modules/chanserv/chanserv.cpp @@ -266,8 +266,9 @@ public: "who is allowed channel operator privileges. Available\n" "commands are listed below; to use them, type\n" "\002%s \037command\037\002. For more information on a\n" - "specific command, type \002%s HELP \037command\037\002.\n"), - ChanServ->nick.c_str(), ChanServ->nick.c_str(), ChanServ->GetQueryCommand().c_str(), ChanServ->GetQueryCommand().c_str()); + "specific command, type \002%s \037command\037\002.\n"), + ChanServ->nick.c_str(), ChanServ->nick.c_str(), + ChanServ->GetQueryCommand().c_str(), ChanServ->GetQueryCommand("generic/help").c_str()); return EVENT_CONTINUE; } |