1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 05:26:38 +02:00

Removed match_usermask

This commit is contained in:
Adam
2010-12-22 18:28:22 -05:00
parent 18377ac9fd
commit 2783c82685
5 changed files with 16 additions and 35 deletions
+4 -1
View File
@@ -104,8 +104,11 @@ IgnoreData *get_ignore(const Anope::string &nick)
if (u->HasMode(UMODE_OPER))
return NULL;
for (; ign != ign_end; ++ign)
if (match_usermask((*ign)->mask, u))
{
Entry ignore_mask((*ign)->mask);
if (ignore_mask.Matches(u))
break;
}
}
else
{