diff options
Diffstat (limited to 'modules/protocol/unreal.cpp')
-rw-r--r-- | modules/protocol/unreal.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp index 3f1d33279..4bfc8e3fb 100644 --- a/modules/protocol/unreal.cpp +++ b/modules/protocol/unreal.cpp @@ -337,6 +337,11 @@ class UnrealIRCdProto : public IRCDProto return IRCDProto::IsChannelValid(chan); } + bool IsExtbanValid(const Anope::string &mask) anope_override + { + return mask.length() >= 4 && mask[0] == '~' && mask[2] == ':'; + } + void SendLogin(User *u) anope_override { if (!u->Account()) |