diff options
author | genius3000 <genius3000@g3k.solutions> | 2018-03-10 15:22:02 -0700 |
---|---|---|
committer | genius3000 <genius3000@g3k.solutions> | 2018-03-10 15:22:02 -0700 |
commit | 750d1009ec16f0d85c732611a58b67a231b5fa07 (patch) | |
tree | 0b45e316356a945015d36e8f676e0db80ae6b36e /modules/commands/ns_set.cpp | |
parent | 1baf774647f138a080b38aab6beeb8626f32abed (diff) |
Show NickServ SET MESSAGE in help when 'useprivmsg' is enabled
Diffstat (limited to 'modules/commands/ns_set.cpp')
-rw-r--r-- | modules/commands/ns_set.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<bool>("useprivmsg")) + if (Config->GetBlock("options")->Get<bool>("useprivmsg")) Command::OnServHelp(source); } }; |