summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-08 22:50:30 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-08 22:50:30 +0000
commit927f436c1c2f26e4a44f9f86f044e5e742981ffe (patch)
treeb4205855bcb6fbd9c513bcf9688d0cf8ac236bc8
parent66e76caaa09f5e7037590030ef14921359407a1a (diff)
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
-rw-r--r--src/users.cpp6
1 files changed, 0 insertions, 6 deletions
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<classbase*> dummy;
Command* nickhandler = ServerInstance->Parser->GetHandler("NICK");
if (nickhandler) // wtfbbq, when would this not be here