summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/init.cpp3
-rw-r--r--src/servers.cpp2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp
index fae776f9b..489f3b264 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -477,6 +477,9 @@ void Anope::Init(int ac, char **av)
static_cast<void>(MOD_RESULT);
Log() << "Databases loaded";
+ for (channel_map::const_iterator it = ChannelList.begin(), it_end = ChannelList.end(); it != it_end; ++it)
+ it->second->Sync();
+
Serialize::CheckTypes();
}
diff --git a/src/servers.cpp b/src/servers.cpp
index 713e4a66e..ef7e221bd 100644
--- a/src/servers.cpp
+++ b/src/servers.cpp
@@ -123,6 +123,8 @@ Server::Server(Server *up, const Anope::string &sname, unsigned shops, const Ano
continue;
ModeManager::StackerAdd(c->ci->WhoSends(), c, cm, true, it2->second);
}
+
+ IRCD->SendTopic(c->ci->WhoSends(), c);
}
}
}