summaryrefslogtreecommitdiff
path: root/modules/commands/cs_set_persist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/cs_set_persist.cpp')
-rw-r--r--modules/commands/cs_set_persist.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/modules/commands/cs_set_persist.cpp b/modules/commands/cs_set_persist.cpp
index fbca0994f..81b5611d8 100644
--- a/modules/commands/cs_set_persist.cpp
+++ b/modules/commands/cs_set_persist.cpp
@@ -152,22 +152,13 @@ class CommandCSSetPersist : public Command
}
};
-class CommandCSSASetPersist : public CommandCSSetPersist
-{
- public:
- CommandCSSASetPersist(Module *creator) : CommandCSSetPersist(creator, "chanserv/saset/persist")
- {
- }
-};
-
class CSSetPersist : public Module
{
CommandCSSetPersist commandcssetpeace;
- CommandCSSASetPersist commandcssasetpeace;
public:
CSSetPersist(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
- commandcssetpeace(this), commandcssasetpeace(this)
+ commandcssetpeace(this)
{
this->SetAuthor("Anope");