summaryrefslogtreecommitdiff
path: root/modules/commands/ns_status.cpp
diff options
context:
space:
mode:
authorRobby- <robby@chat.be>2013-02-02 07:30:53 +0100
committerRobby- <robby@chat.be>2013-02-02 07:30:53 +0100
commit15b37c1e38b20a3f6244af179dfdb395ee929800 (patch)
tree5ce51a5ecb759c472d3f44a322e9fb61a2bbd7ab /modules/commands/ns_status.cpp
parentdccb0ee3138359559d3a984d4708b53154aa7082 (diff)
Some more typo and help text fixes, proper formatting of control codes, missing privileges, and settings corrections.
Diffstat (limited to 'modules/commands/ns_status.cpp')
-rw-r--r--modules/commands/ns_status.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/modules/commands/ns_status.cpp b/modules/commands/ns_status.cpp
index 1d1637177..8fc803896 100644
--- a/modules/commands/ns_status.cpp
+++ b/modules/commands/ns_status.cpp
@@ -19,7 +19,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);
}
@@ -67,11 +67,7 @@ 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\n"
- " \n"
- "Up to sixteen nicknames may be sent with each command; the\n"
- "rest will be ignored. If no nickname is given, your status\n"
- "will be returned."));
+ " 3 - user recognized as owner via password identification"));
return true;
}
};