diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/botserv.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 8 insertions, 1 deletions
@@ -55,6 +55,7 @@ Provided by Johno Crawford <johno.crawford@gmail.com> - 2008 02/08 F x86_64 generating improper SHA1 hash values. [#856] Provided by Jan Milants <jan_renee@msn.com> - 2008 +07/20 F EVENT_BOT_KICK not being send under all circumstances [#910] 01/16 F Server traversion with next_server() failed to list all servers. [#831] 02/08 F Removed excessive free in ChanServ AKICK code. [#849] diff --git a/src/botserv.c b/src/botserv.c index 827f3b392..57719a003 100644 --- a/src/botserv.c +++ b/src/botserv.c @@ -1001,6 +1001,7 @@ void bot_raw_ban(User * requester, ChannelInfo * ci, char *nick, anope_cmd_kick(ci->bi->nick, av[0], av[1], "%s", av[2]); do_kick(ci->bi->nick, 3, av); + send_event(EVENT_BOT_KICK, 3, av[1], av[0], av[2]); } /*************************************************************************/ @@ -1047,6 +1048,7 @@ void bot_raw_kick(User * requester, ChannelInfo * ci, char *nick, else anope_cmd_kick(ci->bi->nick, av[0], av[1], "%s", av[2]); do_kick(ci->bi->nick, 3, av); + send_event(EVENT_BOT_KICK, 3, av[1], av[0], av[2]); } /*************************************************************************/ diff --git a/version.log b/version.log index 390387e8d..47728f8cc 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="21" VERSION_EXTRA="-svn" -VERSION_BUILD="1395" +VERSION_BUILD="1398" # $Log$ # +# BUILD : 1.7.21 (1398) +# BUGS : 910 +# NOTES : EVENT_BOT_KICK not being send under all circumstances. Thanks to Jan Milants for reporting and fixing. +# # BUILD : 1.7.21 (1395) # BUGS : 897 # NOTES : install.js script now works properly on x64 machines |