summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/channels.cpp20
-rw-r--r--src/chanserv.cpp2
-rw-r--r--src/regchannel.cpp19
3 files changed, 22 insertions, 19 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index 8873931f5..fcd78faed 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -87,6 +87,9 @@ void Channel::Reset()
check_modes(this);
for (CUserList::const_iterator it = this->users.begin(), it_end = this->users.end(); it != it_end; ++it)
chan_set_correct_modes((*it)->user, this, 1);
+
+ if (this->ci)
+ this->ci->RestoreTopic();
}
void Channel::Sync()
@@ -117,12 +120,12 @@ void Channel::JoinUser(User *user)
uc->Status = Status;
this->users.push_back(uc);
- bool update_ts = false;
if (this->ci && this->ci->HasFlag(CI_PERSIST) && this->creation_time > this->ci->time_registered)
{
Log(LOG_DEBUG) << "Changing TS of " << this->name << " from " << this->creation_time << " to " << this->ci->time_registered;
this->creation_time = this->ci->time_registered;
- update_ts = true;
+ ircdproto->SendChannel(this, "");
+ this->Reset();
}
if (this->ci && check_access(user, this->ci, CA_MEMO) && this->ci->memos.memos.size() > 0)
@@ -142,7 +145,7 @@ void Channel::JoinUser(User *user)
* legit users - Rob
**/
if (this->users.size() >= Config->BSMinUsers && !this->FindUser(this->ci->bi))
- this->ci->bi->Join(this, update_ts);
+ this->ci->bi->Join(this, false);
/* Only display the greet if the main uplink we're connected
* to has synced, or we'll get greet-floods when the net
* recovers from a netsplit. -GD
@@ -153,17 +156,6 @@ void Channel::JoinUser(User *user)
this->ci->bi->lastmsg = Anope::CurTime;
}
}
-
- /* Update the TS, unless I'm joining a bot already */
- if (update_ts && user->server != Me)
- {
- /* Send the updated TS */
- if (!this->FindUser(whosends(this->ci)))
- {
- whosends(this->ci)->Join(this, update_ts);
- whosends(this->ci)->Part(this);
- }
- }
}
/** Remove a user internally from the channel
diff --git a/src/chanserv.cpp b/src/chanserv.cpp
index 35fd8975c..43d4d3b61 100644
--- a/src/chanserv.cpp
+++ b/src/chanserv.cpp
@@ -273,7 +273,7 @@ void check_modes(Channel *c)
}
}
- else if (cm->Type == MODE_LIST) // XXX we still need better list code...
+ else if (cm->Type == MODE_LIST)
{
if (ml.set)
c->SetMode(NULL, cm, ml.param);
diff --git a/src/regchannel.cpp b/src/regchannel.cpp
index 17c141ea7..0b67daf9a 100644
--- a/src/regchannel.cpp
+++ b/src/regchannel.cpp
@@ -563,10 +563,21 @@ void ChannelInfo::LoadMLock()
if (this->HasFlag(CI_PERSIST) && !this->c)
{
this->c = new Channel(this->name, this->time_registered);
- if (!this->bi && ChanServ && ModeManager::FindChannelModeByName(CMODE_PERM) == NULL)
- ChanServ->Assign(NULL, this);
- else if (this->bi)
- this->bi->Join(c);
+ if (ModeManager::FindChannelModeByName(CMODE_PERM) != NULL)
+ {
+ /* At this point, CMODE_PERM *must* be locked on the channel, so this is fine */
+ ircdproto->SendChannel(this->c, get_mlock_modes(this, true));
+ }
+ else
+ {
+ if (!this->bi)
+ {
+ this->bi = whosends(this);
+ ++this->bi->chancount;
+ }
+ this->bi->Join(this->c);
+ }
+
check_modes(this->c);
this->CheckTopic();
}