summaryrefslogtreecommitdiff
path: root/modules/commands/cs_set_description.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/cs_set_description.cpp')
-rw-r--r--modules/commands/cs_set_description.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/modules/commands/cs_set_description.cpp b/modules/commands/cs_set_description.cpp
index 949f40694..5ada5e036 100644
--- a/modules/commands/cs_set_description.cpp
+++ b/modules/commands/cs_set_description.cpp
@@ -61,22 +61,13 @@ class CommandCSSetDescription : public Command
}
};
-class CommandCSSASetDescription : public CommandCSSetDescription
-{
- public:
- CommandCSSASetDescription(Module *creator) : CommandCSSetDescription(creator, "chanserv/saset/description")
- {
- }
-};
-
class CSSetDescription : public Module
{
CommandCSSetDescription commandcssetdescription;
- CommandCSSASetDescription commandcssasetdescription;
public:
CSSetDescription(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
- commandcssetdescription(this), commandcssasetdescription(this)
+ commandcssetdescription(this)
{
this->SetAuthor("Anope");