diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-17 13:35:21 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-17 13:35:21 +0000 |
commit | 6ba56871c0a8e61b2ff3ff69fa82bdf68140a661 (patch) | |
tree | 4c396bd20cb7181a6fe435ef2692242bf11908fe | |
parent | 370b9053eb3160a927ff1439ebbf657c8f65c6d6 (diff) |
Correctly send TS in JOIN so that services packages etc dont become desynched (plus our own protocol docs say we do this when we send JOIN, oops breaking my own standards now)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6034 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_spanningtree.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index f6bd0e736..318b7178c 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -5014,6 +5014,7 @@ class ModuleSpanningTree : public Module { std::deque<std::string> params; params.push_back(channel->name); + params.push_back(ConvToStr(channel->age)); Utils->DoOneToMany(ServerInstance->Config->ServerName,"JOIN",params); } } |