diff options
Diffstat (limited to 'modules/core/ns_status.cpp')
-rw-r--r-- | modules/core/ns_status.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/core/ns_status.cpp b/modules/core/ns_status.cpp index 5584d957d..817060151 100644 --- a/modules/core/ns_status.cpp +++ b/modules/core/ns_status.cpp @@ -19,6 +19,7 @@ class CommandNSStatus : public Command CommandNSStatus() : Command("STATUS", 0, 16) { this->SetFlag(CFLAG_ALLOW_UNREGISTERED); + this->SetDesc("Returns the owner status of the given nickname"); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -73,11 +74,6 @@ class CommandNSStatus : public Command "will be returned.")); return true; } - - void OnServHelp(CommandSource &source) - { - source.Reply(_(" STATUS Returns the owner status of the given nickname")); - } }; class NSStatus : public Module |