diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-27 18:30:31 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-27 18:30:31 +0200 |
commit | 9c934dcae25a60924fd2506126f86fcc86e73632 (patch) | |
tree | bcc959377db3d39b674f5e87c33041ec8a01f667 /src/modules/m_spanningtree/commands.h | |
parent | 5f7df6455a7055ab71dc4ec84be87ad3f151fa76 (diff) |
m_spanningtree Remove unused parameters from the server introduction message
This does not affect the initial SERVER message containing the password
Diffstat (limited to 'src/modules/m_spanningtree/commands.h')
-rw-r--r-- | src/modules/m_spanningtree/commands.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/commands.h b/src/modules/m_spanningtree/commands.h index c3ef2676c..cbe864275 100644 --- a/src/modules/m_spanningtree/commands.h +++ b/src/modules/m_spanningtree/commands.h @@ -306,7 +306,7 @@ class CommandSave : public ServerCommand class CommandServer : public ServerOnlyServerCommand<CommandServer> { public: - CommandServer(Module* Creator) : ServerOnlyServerCommand<CommandServer>(Creator, "SERVER", 5) { } + CommandServer(Module* Creator) : ServerOnlyServerCommand<CommandServer>(Creator, "SERVER", 3) { } CmdResult HandleServer(TreeServer* server, std::vector<std::string>& parameters); class Builder : public CmdBuilder |