summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b <drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2008-07-20 20:28:05 +0000
committerdrstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b <drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2008-07-20 20:28:05 +0000
commitfc07bee76a3fcd0421eb4478b2de51075c1d3356 (patch)
treed12ff6f6a4437ac1417dc35999cd791118d41604
parent1fc432fb65b544ec5008f1fd1259fd11895dc390 (diff)
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.
git-svn-id: svn://svn.anope.org/anope/trunk@1398 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1113 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes1
-rw-r--r--src/botserv.c2
-rw-r--r--version.log6
3 files changed, 8 insertions, 1 deletions
diff --git a/Changes b/Changes
index 722fd367f..73836d572 100644
--- a/Changes
+++ b/Changes
@@ -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