aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-12-17 13:35:21 +0000
committerGravatar brain2006-12-17 13:35:21 +0000
commit6ba56871c0a8e61b2ff3ff69fa82bdf68140a661 (patch)
tree4c396bd20cb7181a6fe435ef2692242bf11908fe /src/modules/m_spanningtree.cpp
parentAdd a message to the makefile, when starting the build: "this will take a lon... (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
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r--src/modules/m_spanningtree.cpp1
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);
}
}