1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 06:33:13 +02:00

Fix matching stacked extbans.

This commit is contained in:
Sadie Powell
2024-10-04 19:04:31 +01:00
parent 0ab0e4737c
commit 3da9b6df0d
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -871,7 +871,7 @@ namespace InspIRCdExtBan
bool Matches(User *u, const Entry *e) override
{
return !u->Account() && Entry("BAN", e->GetMask()).Matches(u);
return !u->Account() && Entry(this->base, e->GetMask()).Matches(u);
}
};