summaryrefslogtreecommitdiff
path: root/modules/commands/cs_set_secure.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/cs_set_secure.cpp')
-rw-r--r--modules/commands/cs_set_secure.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/modules/commands/cs_set_secure.cpp b/modules/commands/cs_set_secure.cpp
index 49357d2c7..9a8f96939 100644
--- a/modules/commands/cs_set_secure.cpp
+++ b/modules/commands/cs_set_secure.cpp
@@ -66,22 +66,13 @@ class CommandCSSetSecure : public Command
}
};
-class CommandCSSASetSecure : public CommandCSSetSecure
-{
- public:
- CommandCSSASetSecure(Module *creator) : CommandCSSetSecure(creator, "chanserv/saset/secure")
- {
- }
-};
-
class CSSetSecure : public Module
{
CommandCSSetSecure commandcssetsecure;
- CommandCSSASetSecure commandcssasetsecure;
public:
CSSetSecure(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
- commandcssetsecure(this), commandcssasetsecure(this)
+ commandcssetsecure(this)
{
this->SetAuthor("Anope");