mirror of
https://github.com/anope/anope.git
synced 2026-07-08 23:43:13 +02:00
Only match users against the more "serious" extbans (ones which prevent users from joining)
This commit is contained in:
@@ -329,9 +329,7 @@ class InspIRCdExtBan : public ChannelModeList
|
||||
{
|
||||
const Anope::string &mask = e->mask;
|
||||
|
||||
if (mask.find("A:") == 0 || mask.find("B:") == 0 || mask.find("c:") == 0 || mask.find("C:") == 0 ||
|
||||
mask.find("m:") == 0 || mask.find("N:") == 0 || mask.find("p:") == 0 || mask.find("Q:") == 0 ||
|
||||
mask.find("S:") == 0 || mask.find("T:") == 0)
|
||||
if (mask.find("m:") == 0 || mask.find("N:") == 0)
|
||||
{
|
||||
Anope::string real_mask = mask.substr(3);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user