summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-03 17:19:17 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-03 17:19:17 +0000
commit05d5a31d97bece968fc1f3c36fae7c7504aa837c (patch)
tree1f46d790d1a0f3bf43ba1e41ea5e0e360acbfb89 /src/modules
parent257d28535446c12f34dbbc8a1861ed176bc52165 (diff)
Channel TS fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2129 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_spanningtree.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 130b08877..e78740934 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -579,10 +579,12 @@ class TreeSocket : public InspSocket
{
if (ourTS >= TS)
{
+ log(DEBUG,"Our our channel newer than theirs, accepting their modes");
Srv->SendMode(mode_users,modectr,who);
}
else
{
+ log(DEBUG,"Their channel newer than ours, bouncing their modes");
std::deque<std::string> params;
params.push_back(channel);
*mode_users[1] = '-';