diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-19 09:34:03 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-19 09:34:03 +0000 |
commit | a8a36c9935af638dc4411734695d60bf4b28fd8a (patch) | |
tree | 944965f322e120a56cddc26589b91304f26e20c8 /src/xline.cpp | |
parent | b7a20454ce09b3e8f81ca76d86b45993e3be0a86 (diff) |
Don't check E:Lines when enforcing Q:Lines on connected users. Thanks MacGyver.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10559 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/xline.cpp')
-rw-r--r-- | src/xline.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/xline.cpp b/src/xline.cpp index b74072bff..0c6965fe3 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -532,9 +532,6 @@ void ZLine::Apply(User* u) bool QLine::Matches(User *u) { - if (u->exempt) - return false; - if (InspIRCd::Match(u->nick, this->nick)) return true; |