summaryrefslogtreecommitdiff
path: root/src/bots.cpp
diff options
context:
space:
mode:
authorAdam <Adam@drink-coca-cola.info>2010-05-19 16:59:16 -0400
committerAdam <Adam@anope.org>2010-06-18 21:03:44 -0400
commit3a2c2a916a26f4fa1844e71a9f1c2fc25337fd2b (patch)
tree93cb603a579699b51b74a450db092ab8db595e1f /src/bots.cpp
parent0358ae062b771a3e018ef147f607eae7d0bd8647 (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.cpp1
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");
}