diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-06-17 13:27:13 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-06-17 13:27:13 +0000 |
commit | 2325481ce718ea2f1c4e1612cfdd908d7ad60090 (patch) | |
tree | 3083d0f1179ca7c8ceba44c0994aaec706c61970 /src/modules/m_spanningtree.cpp | |
parent | 558ceaf16b422c1cd47aec99a80889ec7f6c4a12 (diff) |
Bring forward fix for w00t.
Note - umode +r may not be removed from a user when you svsnick them. Svsnick is not designed for this
type of "abuse" anyway and usually svsnick will only be used on someone who has no +r.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4025 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r-- | src/modules/m_spanningtree.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 146842df2..fcc099391 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -1582,7 +1582,9 @@ class TreeSocket : public InspSocket { std::deque<std::string> par; par.push_back(params[1]); - DoOneToMany(u->nick,"NICK",par); + /* This is not required as one is sent in OnUserPostNick below + */ + //DoOneToMany(u->nick,"NICK",par); Srv->ChangeUserNick(u,params[1]); u->age = atoi(params[2].c_str()); } |