diff options
author | Adam <Adam@anope.org> | 2011-02-27 16:47:23 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-02-27 16:47:23 -0500 |
commit | bcaf406747ea0456e97f40ba09f76223dd246581 (patch) | |
tree | 441f91fc002fda94a2008d9e7a755c76c30cd2c0 /modules/core/bs_bot.cpp | |
parent | f234a2bfab8a4d900cfc0df91afed530d80738d4 (diff) |
Made akills work on IRCds that do not support bans (ngircd)
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(); } |