diff options
Diffstat (limited to 'modules/core/bs_bot.cpp')
-rw-r--r-- | modules/core/bs_bot.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/bs_bot.cpp b/modules/core/bs_bot.cpp index 0c0c0730d..38ddc738e 100644 --- a/modules/core/bs_bot.cpp +++ b/modules/core/bs_bot.cpp @@ -241,7 +241,7 @@ class CommandBSBot : public Command { ircdproto->SendChangeBotNick(bi, nick); XLine x(bi->nick, "Reserved for services"); - ircdproto->SendSQLine(&x); + ircdproto->SendSQLine(NULL, &x); } if (!nick.equals_cs(bi->nick)) @@ -258,7 +258,7 @@ class CommandBSBot : public Command { ircdproto->SendClientIntroduction(bi, ircd->pseudoclient_mode); XLine x(bi->nick, "Reserved for services"); - ircdproto->SendSQLine(&x); + ircdproto->SendSQLine(NULL, &x); bi->RejoinAll(); } |