diff options
author | Adam <adam@sigterm.info> | 2018-06-12 10:07:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-12 10:07:55 -0400 |
commit | 8294c94b95991df8ef4e7c90b1a432e10a915342 (patch) | |
tree | d802e417848d0fb33258cfd9316193a4d52986b4 /modules/commands/ns_set.cpp | |
parent | 6f09b703ddf1b94f6a341dd0a0f493d5c81599f4 (diff) | |
parent | 750d1009ec16f0d85c732611a58b67a231b5fa07 (diff) |
Merge pull request #217 from genius3000/2.0+ns_set_message
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 c4f3f97cb..886f8d2d4 100644 --- a/modules/commands/ns_set.cpp +++ b/modules/commands/ns_set.cpp @@ -968,7 +968,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); } }; |