summaryrefslogtreecommitdiff
path: root/modules/protocol/unrealircd.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-10-04 19:04:31 +0100
committerSadie Powell <sadie@witchery.services>2024-10-04 19:04:31 +0100
commit3da9b6df0d4a02225f82f809d76fb8f5a27cb6a4 (patch)
treef4e98c9349d31aac2effa81eb93f28c7fc918976 /modules/protocol/unrealircd.cpp
parent0ab0e4737c823cf0b3f26db550579c2f550e06ff (diff)
Fix matching stacked extbans.
Diffstat (limited to 'modules/protocol/unrealircd.cpp')
-rw-r--r--modules/protocol/unrealircd.cpp2
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);
}
};