summaryrefslogtreecommitdiff
path: root/modules/commands/cs_set_restricted.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/cs_set_restricted.cpp')
-rw-r--r--modules/commands/cs_set_restricted.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/modules/commands/cs_set_restricted.cpp b/modules/commands/cs_set_restricted.cpp
index fc48f32bc..736f29683 100644
--- a/modules/commands/cs_set_restricted.cpp
+++ b/modules/commands/cs_set_restricted.cpp
@@ -63,22 +63,13 @@ class CommandCSSetRestricted : public Command
}
};
-class CommandCSSASetRestricted : public CommandCSSetRestricted
-{
- public:
- CommandCSSASetRestricted(Module *creator) : CommandCSSetRestricted(creator, "chanserv/saset/restricted")
- {
- }
-};
-
class CSSetRestricted : public Module
{
CommandCSSetRestricted commandcssetrestricted;
- CommandCSSASetRestricted commandcssasetrestricted;
public:
CSSetRestricted(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
- commandcssetrestricted(this), commandcssasetrestricted(this)
+ commandcssetrestricted(this)
{
this->SetAuthor("Anope");