1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 19:26:38 +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
@@ -555,7 +555,7 @@ namespace UnrealExtBan
bool Matches(User *u, const Entry *e) override
{
return Entry(this->name, e->GetMask()).Matches(u);
return Entry(this->base, e->GetMask()).Matches(u);
}
};