diff options
Diffstat (limited to 'modules/botserv/bs_kick.cpp')
-rw-r--r-- | modules/botserv/bs_kick.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/botserv/bs_kick.cpp b/modules/botserv/bs_kick.cpp index 80d8fc45d..97ca62d54 100644 --- a/modules/botserv/bs_kick.cpp +++ b/modules/botserv/bs_kick.cpp @@ -139,6 +139,7 @@ public: source.Reply(" "); source.Reply(_("Configures bot kickers. \037option\037 can be one of:")); + HelpWrapper help; Anope::string this_name = source.command; for (const auto &[c_name, info] : source.service->commands) { @@ -148,10 +149,11 @@ public: if (command) { source.command = c_name; - command->OnServHelp(source); + command->OnServHelp(source, help); } } } + help.SendTo(source); source.Reply(_( "Type \002%s\032\037option\037\002 for more information " |