diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-11-09 03:34:37 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-11-09 17:23:10 +0100 |
commit | 4a57d129fbbe9858f2a8c4d14cef7e0d78f08329 (patch) | |
tree | 97e7947ca4fb559602c9e6e47578586ee6542f49 /src | |
parent | 2cbbc1ce84f5c4c3733c1c64d4f7f491f7aabbcd (diff) |
m_spanningtree SVSNICK needs 3 parameters
Diffstat (limited to 'src')
-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 d08835ccc..3b5b499c1 100644 --- a/src/modules/m_spanningtree/commands.h +++ b/src/modules/m_spanningtree/commands.h @@ -60,7 +60,7 @@ class CommandSVSPart : public Command class CommandSVSNick : public Command { public: - CommandSVSNick(Module* Creator) : Command(Creator, "SVSNICK", 2) { flags_needed = FLAG_SERVERONLY; } + CommandSVSNick(Module* Creator) : Command(Creator, "SVSNICK", 3) { flags_needed = FLAG_SERVERONLY; } CmdResult Handle (const std::vector<std::string>& parameters, User *user); RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters); }; |