diff options
author | Robby- <robby@chat.be> | 2013-10-02 00:13:40 +0200 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-10-05 00:33:03 -0400 |
commit | 82006b868f0fc33cfe8903cdcf854a7f6be9b344 (patch) | |
tree | d6c2a3dee62c8ea49ec147babbff616ecbde9b84 /modules/commands/os_news.cpp | |
parent | ba5a3f5f00609a5d82abd9e255dc93ee44d0e8f4 (diff) |
cs_entrymsg: Check for the correct override privilege.
Make some more commands check if Read-Only mode is active.
cs_flags: Show a meaningful message when a user is not found on the access list.
os_set: Add missing capabilities to the readonly help output.
OperServ: Add logging to certain commands.
NickServ: Undo logging for listings.
Diffstat (limited to 'modules/commands/os_news.cpp')
-rw-r--r-- | modules/commands/os_news.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/commands/os_news.cpp b/modules/commands/os_news.cpp index 8fb4cc4f7..5fe8ccc65 100644 --- a/modules/commands/os_news.cpp +++ b/modules/commands/os_news.cpp @@ -265,11 +265,11 @@ class CommandOSLogonNews : public NewsBase this->SendSyntax(source); source.Reply(" "); source.Reply(_("Edits or displays the list of logon news messages. When a\n" - "user connects to the network, these messages will be sent\n" - "to them. However, no more than \002%d\002 messages will be\n" - "sent in order to avoid flooding the user. If there are\n" - "more news messages, only the most recent will be sent."), - Config->GetModule(this->owner)->Get<unsigned>("newscount", "3")); + "user connects to the network, these messages will be sent\n" + "to them. However, no more than \002%d\002 messages will be\n" + "sent in order to avoid flooding the user. If there are\n" + "more news messages, only the most recent will be sent."), + Config->GetModule(this->owner)->Get<unsigned>("newscount", "3")); return true; } }; |