]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Bring forward fix for w00t.
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sat, 17 Jun 2006 13:27:13 +0000 (13:27 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sat, 17 Jun 2006 13:27:13 +0000 (13:27 +0000)
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

src/modules/m_spanningtree.cpp

index 146842df2acb5326935aa6ce091126f6237788d9..fcc0993918e84136ccb2e330e53b39f4c806c06f 100644 (file)
@@ -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());
                        }