summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-12-09 22:55:00 +0000
committergeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-12-09 22:55:00 +0000
commitfb05b60099d156704bb4f032aad676e484dd5b47 (patch)
tree9bbc5d06f8ceed7b92b53ce358e146347c3c1b8d
parent3aa379bb922e55b473c0b0cf37e05a288f15491b (diff)
BUILD : 1.7.17 (1200) BUGS : 632 NOTES : Fixed BotServ KICK incorrectly reporting assigned status
git-svn-id: svn://svn.anope.org/anope/trunk@1200 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@919 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes1
-rw-r--r--src/core/bs_kick.c2
-rw-r--r--version.log6
3 files changed, 7 insertions, 2 deletions
diff --git a/Changes b/Changes
index c6ec10ae7..aff993d9b 100644
--- a/Changes
+++ b/Changes
@@ -7,6 +7,7 @@ Anope Version S V N
10/21 F svspart sends svspart instead of eob. [#617]
11/02 F hs_request no longer returns MOD_STOP. [ #00]
11/02 F anoperc sends correct signalls. [#623]
+12/07 F BotServ KICK incorrectly reported assigned status of bots. [#632]
12/09 F Reviewed and updated all of the MySQL code. [ #00]
Anope Version 1.7.17
diff --git a/src/core/bs_kick.c b/src/core/bs_kick.c
index a84a718b4..40c71dac0 100644
--- a/src/core/bs_kick.c
+++ b/src/core/bs_kick.c
@@ -112,7 +112,7 @@ int do_kickcmd(User * u)
else if (!is_services_admin(u) && !check_access(u, ci, CA_SET))
notice_lang(s_BotServ, u, ACCESS_DENIED);
else if (!ci->bi)
- notice_lang(s_BotServ, u, BOT_DOES_NOT_EXIST, chan);
+ notice_lang(s_BotServ, u, BOT_NOT_ASSIGNED);
else {
if (!stricmp(option, "BADWORDS")) {
if (!stricmp(value, "ON")) {
diff --git a/version.log b/version.log
index 83195316d..bf9f4aaed 100644
--- a/version.log
+++ b/version.log
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="17"
VERSION_EXTRA="-svn"
-VERSION_BUILD="1199"
+VERSION_BUILD="1200"
# $Log$
#
+# BUILD : 1.7.17 (1200)
+# BUGS : 632
+# NOTES : Fixed BotServ KICK incorrectly reporting assigned status
+#
# BUILD : 1.7.17 (1199)
# BUGS : 621
# NOTES : Added the ability to see if AutoOp is enabled in NickServ INFO displays.