diff options
Diffstat (limited to 'src/bots.cpp')
-rw-r--r-- | src/bots.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bots.cpp b/src/bots.cpp index 7e895a4be..f8d692d74 100644 --- a/src/bots.cpp +++ b/src/bots.cpp @@ -179,7 +179,7 @@ void BotInfo::Join(Channel *c, ChannelStatus *status) /* We check for bans */ for (; bans.first != bans.second; ++bans.first) { - Entry ban(bans.first->second); + Entry ban(CMODE_BAN, bans.first->second); if (ban.Matches(this)) c->RemoveMode(NULL, CMODE_BAN, ban.GetMask()); } |