diff options
| author | 2013-09-10 13:54:01 +0200 | |
|---|---|---|
| committer | 2013-09-10 13:54:01 +0200 | |
| commit | 2f753f7864bf847af26f7a1aedc727927c163738 (patch) | |
| tree | 34f7fd6d14f2d39073e398f02001cf00f1669b9f /src/modules/m_spanningtree/main.cpp | |
| parent | Change allocation of a few services to make use of auto registration (diff) | |
m_spanningtree Move c2s commands out of SpanningTreeCommands to auto register them
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index fed55d4fd..f264f9a7a 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -36,13 +36,13 @@ #include "protocolinterface.h" ModuleSpanningTree::ModuleSpanningTree() - : commands(NULL), DNS(this, "DNS") + : rconnect(this), rsquit(this), map(this) + , commands(NULL), DNS(this, "DNS") { } SpanningTreeCommands::SpanningTreeCommands(ModuleSpanningTree* module) - : rconnect(module), rsquit(module), map(module), - svsjoin(module), svspart(module), svsnick(module), metadata(module), + : svsjoin(module), svspart(module), svsnick(module), metadata(module), uid(module), opertype(module), fjoin(module), ijoin(module), resync(module), fmode(module), ftopic(module), fhost(module), fident(module), fname(module), away(module), addline(module), delline(module), encap(module), idle(module), |
