diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 21:20:35 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 21:20:35 +0000 |
commit | 1f579c0fe2f139fccf5fdfb971080ba99cfdcdab (patch) | |
tree | 93369b5c9a824e76f756735d58ebc5656e842742 /src/core/bs_bot.c | |
parent | 6c305a3d6731191899f4331be56a071dab66d194 (diff) |
Replaced anope_SendSQLine() with direct call to SendSQLine() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1348 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/bs_bot.c')
-rw-r--r-- | src/core/bs_bot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/bs_bot.c b/src/core/bs_bot.c index a93f2396a..805b4dcfa 100644 --- a/src/core/bs_bot.c +++ b/src/core/bs_bot.c @@ -295,7 +295,7 @@ int do_bot(User * u) the Q:Line either (it's otherwise set in SendClientIntroduction) */ if (!user) { anope_SendChangeBotNick(oldnick, bi->nick); - anope_SendSQLine(bi->nick, "Reserved for services"); + ircdproto->SendSQLine(bi->nick, "Reserved for services"); } else { ircdproto->SendQuit(oldnick, "Quit: Be right back"); |