summaryrefslogtreecommitdiff
path: root/modules/core/bs_unassign.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/core/bs_unassign.cpp')
-rw-r--r--modules/core/bs_unassign.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/core/bs_unassign.cpp b/modules/core/bs_unassign.cpp
index 40a67d9a9..f7201c905 100644
--- a/modules/core/bs_unassign.cpp
+++ b/modules/core/bs_unassign.cpp
@@ -18,6 +18,7 @@ class CommandBSUnassign : public Command
public:
CommandBSUnassign() : Command("UNASSIGN", 1, 1)
{
+ this->SetDesc("Unassigns a bot from a channel");
}
CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> &params)
@@ -62,11 +63,6 @@ class CommandBSUnassign : public Command
{
SyntaxError(source, "UNASSIGN", _("UNASSIGN \037chan\037"));
}
-
- void OnServHelp(CommandSource &source)
- {
- source.Reply(_(" UNASSIGN Unassigns a bot from a channel"));
- }
};
class BSUnassign : public Module