diff options
| author | Adam <Adam@anope.org> | 2010-09-17 14:32:46 -0400 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2010-09-17 14:32:46 -0400 |
| commit | 74566d869aefab16ede2fa946a0ea7b2cfed51ef (patch) | |
| tree | e5de1428e8e6071c55b9de5662ad4c94407e8b6b /src/regchannel.cpp | |
| parent | 61e75646339753609d25aad0f4f8f60db1c966b5 (diff) | |
Fixed bug #1190 and prevent m_dnsbl from akilling a user multiple times if they are in multiple blacklists
Diffstat (limited to 'src/regchannel.cpp')
| -rw-r--r-- | src/regchannel.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/regchannel.cpp b/src/regchannel.cpp index fb8036677..ad9a0eac7 100644 --- a/src/regchannel.cpp +++ b/src/regchannel.cpp @@ -394,9 +394,10 @@ void ChannelInfo::LoadMLock() if (this->HasFlag(CI_PERSIST) && !this->c) { this->c = new Channel(this->name, this->time_registered); - if (!this->bi) + if (!this->bi && ModeManager::FindChannelModeByName(CMODE_PERM) == NULL) ChanServ->Assign(NULL, this); - this->bi->Join(c); + else if (this->bi) + this->bi->Join(c); check_modes(this->c); this->CheckTopic(); } |
