diff options
author | Peter Powell <petpow@saberuk.com> | 2018-11-07 10:58:42 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-11-07 11:20:10 +0000 |
commit | 77730fd5f09f8fc193205654c8bba84d34365670 (patch) | |
tree | 23877567a613e9520797bcbd923b7ae38632f616 /src/modules | |
parent | 79892a727e323dcc4bce7e9c0cf3c99c5fe61706 (diff) | |
parent | 0d9c5a22626282403b322c2a433d08c17633e507 (diff) |
Merge tag 'v2.0.27' into master.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_banredirect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_banredirect.cpp b/src/modules/m_banredirect.cpp index 5ec75f13c..7246527d3 100644 --- a/src/modules/m_banredirect.cpp +++ b/src/modules/m_banredirect.cpp @@ -82,7 +82,7 @@ class BanRedirect : public ModeWatcher ListModeBase::ModeList* list = banlm->GetList(channel); if ((list) && (adding) && (maxbans <= list->size())) { - source->WriteNumeric(ERR_BANLISTFULL, channel->name, InspIRCd::Format("Channel ban list for %s is full (maximum entries for this channel is %u)", channel->name.c_str(), maxbans)); + source->WriteNumeric(ERR_BANLISTFULL, channel->name, banlm->GetModeChar(), InspIRCd::Format("Channel ban list for %s is full (maximum entries for this channel is %u)", channel->name.c_str(), maxbans)); return false; } |