diff options
Diffstat (limited to 'modules/nickserv/ns_set.cpp')
-rw-r--r-- | modules/nickserv/ns_set.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/nickserv/ns_set.cpp b/modules/nickserv/ns_set.cpp index 63568c4f1..39da08053 100644 --- a/modules/nickserv/ns_set.cpp +++ b/modules/nickserv/ns_set.cpp @@ -57,8 +57,9 @@ public: } } - source.Reply(_("Type \002%s HELP %s \037option\037\002 for more information\n" - "on a specific option."), source.service->GetQueryCommand().c_str(), this_name.c_str()); + source.Reply(_("Type \002%s \037option\037\002 for more information\n" + "on a specific option."), + source.service->GetQueryCommand("generic/help", this_name).c_str()); return true; } @@ -100,9 +101,10 @@ 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. The options will be set on the given\n" - "\037nickname\037."), source.service->GetQueryCommand().c_str(), this_name.c_str()); + "\037nickname\037."), + source.service->GetQueryCommand("generic/help", this_name).c_str()); return true; } }; |