summaryrefslogtreecommitdiff
path: root/modules/core/cs_status.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/core/cs_status.cpp')
-rw-r--r--modules/core/cs_status.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/core/cs_status.cpp b/modules/core/cs_status.cpp
index d1c469022..84c9e4a82 100644
--- a/modules/core/cs_status.cpp
+++ b/modules/core/cs_status.cpp
@@ -18,6 +18,7 @@ class CommandCSStatus : public Command
public:
CommandCSStatus() : Command("STATUS", 2, 2, "chanserv/status")
{
+ this->SetDesc("Returns the current access level of a user on a channel");
}
CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> &params)
@@ -53,11 +54,6 @@ class CommandCSStatus : public Command
{
SyntaxError(source, "STATUS", _("STATUS \037channel\037 \037item\037"));
}
-
- void OnServHelp(CommandSource &source)
- {
- source.Reply(_(" STATUS Returns the current access level of a user on a channel"));
- }
};
class CSStatus : public Module