summaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/users.cpp')
-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