diff options
author | Adam <Adam@anope.org> | 2013-02-18 22:10:57 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-02-18 22:10:57 -0500 |
commit | cb91f991a355344520c468495bd7d0f6f7359027 (patch) | |
tree | 7791925a3f51a564ffcae51b49b6ffc3b211ba93 /src/servers.cpp | |
parent | a49d7b12cb5b75920b718c8fcca8067efbf2f731 (diff) |
Made the mode bouncing detector harder to hit and ignore syncing channels
Diffstat (limited to 'src/servers.cpp')
-rw-r--r-- | src/servers.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/servers.cpp b/src/servers.cpp index 2b4fea2db..1dd9d8a37 100644 --- a/src/servers.cpp +++ b/src/servers.cpp @@ -280,9 +280,7 @@ void Server::Sync(bool sync_links) for (channel_map::const_iterator it = ChannelList.begin(), it_end = ChannelList.end(); it != it_end; ++it) { Channel *c = it->second; - c->CheckModes(); - if (c->ci) - c->ci->RestoreTopic(); + c->Sync(); } if (!Anope::NoFork && Anope::AtTerm()) |