diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/core/bs_kick.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -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. |