diff options
author | Peter Powell <petpow@saberuk.com> | 2017-12-04 14:34:51 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2017-12-15 00:52:35 +0000 |
commit | 18ecf9d7e4056c4de789064508074266208e678f (patch) | |
tree | d2537f26638b75f46ba0a2f98d29af6150ba2f78 /src/modules | |
parent | 1b88e86f970124cb5c143fcd6ea85249d91ff3ad (diff) |
Fix m_spanningtree sending the wrong setter in S2S ADDLINE.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_spanningtree/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 967b577b1..78d202c47 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -849,7 +849,7 @@ void ModuleSpanningTree::OnAddLine(User* user, XLine *x) parameterlist params; params.push_back(x->type); params.push_back(x->Displayable()); - params.push_back(ServerInstance->Config->ServerName); + params.push_back(x->source); params.push_back(ConvToStr(x->set_time)); params.push_back(ConvToStr(x->duration)); params.push_back(":" + x->reason); |