From a84226edf0368aab581fcd1365a0cbff6e0c5a4a Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 11 May 2012 00:50:58 -0400 Subject: Do not show help for set message if useprivmsg is disabled --- modules/commands/ns_set_message.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'modules/commands/ns_set_message.cpp') diff --git a/modules/commands/ns_set_message.cpp b/modules/commands/ns_set_message.cpp index 06aae4748..a56c3fd77 100644 --- a/modules/commands/ns_set_message.cpp +++ b/modules/commands/ns_set_message.cpp @@ -34,7 +34,7 @@ class CommandNSSetMessage : public Command if (!Config->UsePrivmsg) { - source.Reply(_("Option \002%s\02 cannot be set on this network."), "MSG"); + source.Reply(_("You cannot %s on this network."), source.command.c_str()); return; } @@ -68,6 +68,12 @@ class CommandNSSetMessage : public Command "use notices.")); return true; } + + void OnServHelp(CommandSource &source) anope_override + { + if (Config->UsePrivmsg) + Command::OnServHelp(source); + } }; class CommandNSSASetMessage : public CommandNSSetMessage -- cgit