summaryrefslogtreecommitdiff
path: root/src/bots.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bots.cpp')
-rw-r--r--src/bots.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bots.cpp b/src/bots.cpp
index 034472774..3c23da7d4 100644
--- a/src/bots.cpp
+++ b/src/bots.cpp
@@ -68,7 +68,8 @@ BotInfo::BotInfo(const std::string &nnick, const std::string &nuser, const std::
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");
+ XLine x(this->nick.c_str(), "Reserved for services");
+ ircdproto->SendSQLine(&x);
}
}