diff options
Diffstat (limited to 'modules/commands/cs_set_founder.cpp')
-rw-r--r-- | modules/commands/cs_set_founder.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/modules/commands/cs_set_founder.cpp b/modules/commands/cs_set_founder.cpp index 037ec62ff..8c9b5ba0c 100644 --- a/modules/commands/cs_set_founder.cpp +++ b/modules/commands/cs_set_founder.cpp @@ -76,22 +76,13 @@ class CommandCSSetFounder : public Command } }; -class CommandCSSASetFounder : public CommandCSSetFounder -{ - public: - CommandCSSASetFounder(Module *creator) : CommandCSSetFounder(creator, "chanserv/saset/founder") - { - } -}; - class CSSetFounder : public Module { CommandCSSetFounder commandcssetfounder; - CommandCSSASetFounder commandcssasetfounder; public: CSSetFounder(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE), - commandcssetfounder(this), commandcssasetfounder(this) + commandcssetfounder(this) { this->SetAuthor("Anope"); |