diff options
author | Robby- <robby@chat.be> | 2013-09-14 14:40:17 +0200 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-09-27 19:11:02 -0400 |
commit | 4f820a7d41dbdf83b27005dcfb02507206708d6b (patch) | |
tree | df34793df95dff47106a84c55980354cf02b05b4 /modules/commands/ns_status.cpp | |
parent | 5f7127dd92ec9b86b64ea0bbc385e5c06be77fff (diff) |
Fix typos, remove dead language defines.
os_set: Add missing debug text in help output.
Diffstat (limited to 'modules/commands/ns_status.cpp')
-rw-r--r-- | modules/commands/ns_status.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/commands/ns_status.cpp b/modules/commands/ns_status.cpp index 3bfeab888..64d1f8db7 100644 --- a/modules/commands/ns_status.cpp +++ b/modules/commands/ns_status.cpp @@ -17,7 +17,7 @@ class CommandNSStatus : public Command CommandNSStatus(Module *creator) : Command(creator, "nickserv/status", 0, 16) { this->SetDesc(_("Returns the owner status of the given nickname")); - this->SetSyntax(_("\037nickname\037")); + this->SetSyntax(_("[\037nickname\037]")); this->AllowUnregistered(true); } @@ -65,7 +65,9 @@ class CommandNSStatus : public Command " 0 - no such user online \002or\002 nickname not registered\n" " 1 - user not recognized as nickname's owner\n" " 2 - user recognized as owner via access list only\n" - " 3 - user recognized as owner via password identification")); + " 3 - user recognized as owner via password identification\n" + " \n" + "If no nickname is given, your status will be returned.")); return true; } }; |