diff options
Diffstat (limited to 'src/modules/m_banexception.cpp')
-rw-r--r-- | src/modules/m_banexception.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_banexception.cpp b/src/modules/m_banexception.cpp index 42fce61f9..5a8c2b785 100644 --- a/src/modules/m_banexception.cpp +++ b/src/modules/m_banexception.cpp @@ -104,7 +104,8 @@ public: std::string maskptr = it->mask.substr(2); if (InspIRCd::Match(str, maskptr)) - return 1; // matches + // They match an entry on the list, so let them in. + return 1; } } |