diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-08 22:50:30 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-08 22:50:30 +0000 |
commit | 927f436c1c2f26e4a44f9f86f044e5e742981ffe (patch) | |
tree | b4205855bcb6fbd9c513bcf9688d0cf8ac236bc8 /src | |
parent | 66e76caaa09f5e7037590030ef14921359407a1a (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
Diffstat (limited to 'src')
-rw-r--r-- | src/users.cpp | 6 |
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 |