]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/xline.cpp
cgiirc: Pass hosts to WEBIRC command on rehash. No fucking wonder this never worked...
[user/henk/code/inspircd.git] / src / xline.cpp
index a57f604c515df05cf3566d242053419c9f2ae1f2..0424e7a09ff7482f73c2b2ab0a8f3fe8cb25a5c9 100644 (file)
@@ -342,6 +342,10 @@ void XLineManager::ApplyLines()
        {
                User* u = (User*)(*u2);
 
+               // Don't ban people who are exempt.
+               if (u->exempt)
+                       continue;
+
                for (std::vector<XLine *>::iterator i = pending_lines.begin(); i != pending_lines.end(); i++)
                {
                        XLine *x = *i;