diff options
author | Adam <Adam@drink-coca-cola.info> | 2010-05-19 16:59:16 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-18 21:03:44 -0400 |
commit | 3a2c2a916a26f4fa1844e71a9f1c2fc25337fd2b (patch) | |
tree | 93cb603a579699b51b74a450db092ab8db595e1f /src/bots.cpp | |
parent | 0358ae062b771a3e018ef147f607eae7d0bd8647 (diff) |
Dont load mlock from the database until after Anope is connected, it doesnt know all of the available modes until then
Diffstat (limited to 'src/bots.cpp')
-rw-r--r-- | src/bots.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bots.cpp b/src/bots.cpp index a8cc86654..034472774 100644 --- a/src/bots.cpp +++ b/src/bots.cpp @@ -66,6 +66,7 @@ BotInfo::BotInfo(const std::string &nnick, const std::string &nuser, const std:: // If we're synchronised with the uplink already, call introduce_user() for this bot. if (Me && Me->GetUplink()->IsSynced()) + { ircdproto->SendClientIntroduction(this->nick, this->user, this->host, this->real, ircd->pseudoclient_mode, this->uid); ircdproto->SendSQLine(this->nick, "Reserved for services"); } |