diff options
| author | 2013-07-15 13:40:22 +0200 | |
|---|---|---|
| committer | 2013-08-18 15:11:02 +0200 | |
| commit | b14ebbccf08ec34a73e1ba271e67da80d9fe805c (patch) | |
| tree | 012640699b3960940af3756ef1e881747b0aa8d1 /src/modules/m_spanningtree/fjoin.cpp | |
| parent | Create the CommandBase class from Command (diff) | |
m_spanningtree Move all server-to-server command handlers into handler classes
These commands are not registered in or called by the core. When looking for the handler of a command a new command table is searched first which contains all server-to-server commands. If a handler cannot be found in there, the core command table is consulted.
Diffstat (limited to 'src/modules/m_spanningtree/fjoin.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/fjoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp index 21327581a..831d52c1d 100644 --- a/src/modules/m_spanningtree/fjoin.cpp +++ b/src/modules/m_spanningtree/fjoin.cpp @@ -26,7 +26,7 @@ #include "treesocket.h" /** FJOIN, almost identical to TS6 SJOIN, except for nicklist handling. */ -CmdResult CommandFJoin::Handle(const std::vector<std::string>& params, User *srcuser) +CmdResult CommandFJoin::Handle(User* srcuser, std::vector<std::string>& params) { /* 1.1+ FJOIN works as follows: * |
