summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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] = '-';