From: w00t Date: Tue, 8 Apr 2008 22:50:30 +0000 (+0000) Subject: Don't check Q:Lines here, it will affect change to UID X-Git-Tag: v2.0.23~3409 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=927f436c1c2f26e4a44f9f86f044e5e742981ffe;p=user%2Fhenk%2Fcode%2Finspircd.git Don't check Q:Lines here, it will affect change to UID git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9435 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/users.cpp b/src/users.cpp index 0dfe54f65..387658ac6 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1001,12 +1001,6 @@ bool User::ForceNickChange(const char* newnick) return false; } - if (ServerInstance->XLines->MatchesLine("Q",newnick)) - { - ServerInstance->stats->statsCollisions++; - return false; - } - std::deque dummy; Command* nickhandler = ServerInstance->Parser->GetHandler("NICK"); if (nickhandler) // wtfbbq, when would this not be here