Skip to content

Commit

Permalink
Merge pull request anope#217 from genius3000/2.0+ns_set_message
Browse files Browse the repository at this point in the history
Show NickServ SET MESSAGE in help when 'useprivmsg' is enabled
  • Loading branch information
Adam- authored Jun 12, 2018
2 parents 6f09b70 + 750d100 commit 8294c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/commands/ns_set.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
};
Expand Down

0 comments on commit 8294c94

Please sign in to comment.