diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-05-26 19:44:13 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-09-08 17:11:08 +0200 |
commit | 992674362c5f64bdb8e1942eeaa7612524529cd6 (patch) | |
tree | 8f29b37db626e0b81002cac48d0561ef998ec2f1 /src/modules/m_spanningtree | |
parent | 8a64bd3a0ac72855b681b00f3a9a08cebee755ce (diff) |
Automatically register ServiceProviders created by modules
Diffstat (limited to 'src/modules/m_spanningtree')
-rw-r--r-- | src/modules/m_spanningtree/main.cpp | 3 | ||||
-rw-r--r-- | src/modules/m_spanningtree/servercommand.cpp | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 1e59e1607..fed55d4fd 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -59,9 +59,6 @@ void ModuleSpanningTree::init() Utils = new SpanningTreeUtilities(this); Utils->TreeRoot = new TreeServer; commands = new SpanningTreeCommands(this); - ServerInstance->Modules->AddService(commands->rconnect); - ServerInstance->Modules->AddService(commands->rsquit); - ServerInstance->Modules->AddService(commands->map); delete ServerInstance->PI; ServerInstance->PI = new SpanningTreeProtocolInterface; diff --git a/src/modules/m_spanningtree/servercommand.cpp b/src/modules/m_spanningtree/servercommand.cpp index fe5a38a9e..016788f51 100644 --- a/src/modules/m_spanningtree/servercommand.cpp +++ b/src/modules/m_spanningtree/servercommand.cpp @@ -24,6 +24,7 @@ ServerCommand::ServerCommand(Module* Creator, const std::string& Name, unsigned int MinParams, unsigned int MaxParams) : CommandBase(Creator, Name, MinParams, MaxParams) { + this->ServiceProvider::DisableAutoRegister(); ModuleSpanningTree* st = static_cast<ModuleSpanningTree*>(Creator); st->CmdManager.AddCommand(this); } |