diff options
author | Sadie Powell <sadie@witchery.services> | 2025-04-09 18:17:02 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-04-10 13:34:25 +0100 |
commit | 9351debd73cb22f33bc46c201c9d66ec09ea773e (patch) | |
tree | be92bdd1d1f288f375d6ff7fa00afc3db75e255d /modules/botserv/bs_kick.cpp | |
parent | 40d558ef21a438bf1dff9ac522cd852166fc4c44 (diff) |
Expand GetQueryCommand to take a command name.
Diffstat (limited to 'modules/botserv/bs_kick.cpp')
-rw-r--r-- | modules/botserv/bs_kick.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/botserv/bs_kick.cpp b/modules/botserv/bs_kick.cpp index 4fb781f5d..835d90491 100644 --- a/modules/botserv/bs_kick.cpp +++ b/modules/botserv/bs_kick.cpp @@ -153,11 +153,12 @@ public: } } - source.Reply(_("Type \002%s HELP %s \037option\037\002 for more information\n" + source.Reply(_("Type \002%s \037option\037\002 for more information\n" "on a specific option.\n" " \n" "Note: access to this command is controlled by the\n" - "level SET."), source.service->GetQueryCommand().c_str(), this_name.c_str()); + "level SET."), + source.service->GetQueryCommand("generic/help", this_name).c_str()); return true; } @@ -308,12 +309,13 @@ public: "option tells the bot to kick users who say certain words\n" "on the channels.\n" "You can define bad words for your channel using the\n" - "\002BADWORDS\002 command. Type \002%s HELP BADWORDS\002 for\n" + "\002BADWORDS\002 command. Type \002%s BADWORDS\002 for\n" "more information.\n" " \n" "\037ttb\037 is the number of times a user can be kicked\n" "before it gets banned. Don't give ttb to disable\n" - "the ban system once activated."), source.service->GetQueryCommand().c_str()); + "the ban system once activated."), + source.service->GetQueryCommand("generic/help").c_str()); return true; } }; |