aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-06-17 13:09:50 +0000
committerGravatar brain2006-06-17 13:09:50 +0000
commit5d24398e3502cbdc8f251fb81f12c8dd59f79cce (patch)
tree94c44eea861ae2516098f93c1c27912ebe111c34 /src/modules/m_spanningtree.cpp
parentHopefully we now have hostmask matching on both vhost and host. (diff)
A commit never went through here because...there were other changes? :/
git-svn-id: http://svn.inspircd.org/repository/branches/1_0_stable@4024 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r--src/modules/m_spanningtree.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index cede76260..bff983de8 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -1572,7 +1572,10 @@ class TreeSocket : public InspSocket
{
std::deque<std::string> par;
par.push_back(params[1]);
- DoOneToMany(u->nick,"NICK",par);
+ /* Test fix: This shouldnt be needed, because if its a local user,
+ * this will be sent out again by OnUserPostNick below.
+ */
+ //DoOneToMany(u->nick,"NICK",par);
Srv->ChangeUserNick(u,params[1]);
u->age = atoi(params[2].c_str());
}