From 750d1009ec16f0d85c732611a58b67a231b5fa07 Mon Sep 17 00:00:00 2001 From: genius3000 Date: Sat, 10 Mar 2018 15:22:02 -0700 Subject: Show NickServ SET MESSAGE in help when 'useprivmsg' is enabled --- modules/commands/ns_set.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/commands/ns_set.cpp') diff --git a/modules/commands/ns_set.cpp b/modules/commands/ns_set.cpp index dc007289e..8e50f2d89 100644 --- a/modules/commands/ns_set.cpp +++ b/modules/commands/ns_set.cpp @@ -963,7 +963,7 @@ class CommandNSSetMessage : public Command void OnServHelp(CommandSource &source) anope_override { - if (!Config->GetBlock("options")->Get("useprivmsg")) + if (Config->GetBlock("options")->Get("useprivmsg")) Command::OnServHelp(source); } }; -- cgit