diff options
author | Sadie Powell <sadie@witchery.services> | 2024-10-04 19:04:31 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-10-04 19:04:31 +0100 |
commit | 3da9b6df0d4a02225f82f809d76fb8f5a27cb6a4 (patch) | |
tree | f4e98c9349d31aac2effa81eb93f28c7fc918976 /modules/protocol/unrealircd.cpp | |
parent | 0ab0e4737c823cf0b3f26db550579c2f550e06ff (diff) |
Fix matching stacked extbans.
Diffstat (limited to 'modules/protocol/unrealircd.cpp')
-rw-r--r-- | modules/protocol/unrealircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unrealircd.cpp b/modules/protocol/unrealircd.cpp index 75a68bf6f..8902396fd 100644 --- a/modules/protocol/unrealircd.cpp +++ b/modules/protocol/unrealircd.cpp @@ -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); } }; |