1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 18:23:12 +02:00

Merge pull request #217 from genius3000/2.0+ns_set_message

Show NickServ SET MESSAGE in help when 'useprivmsg' is enabled
This commit is contained in:
Adam
2018-06-12 10:07:55 -04:00
committed by GitHub
+1 -1
View File
@@ -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);
}
};