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, 8 insertions, 1 deletions
@@ -39,6 +39,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006 03/18 F Fixed sstrdup() with NULL argument in cs_akick.c. [#460] 03/18 F Fixed charybdis umodes. [#471] 03/19 F Fixed a gcc4 compiling issue. [#453] +03/21 F Fixed bot check on /bs kick. [ #00] Provided by nenolod. <nenolod@nenolod.net> - 2006 02/03 A Support for Charybdis IRCd. [ #00] diff --git a/src/core/bs_kick.c b/src/core/bs_kick.c index abedbd550..a84a718b4 100644 --- a/src/core/bs_kick.c +++ b/src/core/bs_kick.c @@ -111,6 +111,8 @@ int do_kickcmd(User * u) notice_lang(s_BotServ, u, CHAN_X_FORBIDDEN, chan); 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); else { if (!stricmp(option, "BADWORDS")) { if (!stricmp(value, "ON")) { diff --git a/version.log b/version.log index c4a1d3436..7118ec390 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="13" VERSION_EXTRA="-svn" -VERSION_BUILD="1012" +VERSION_BUILD="1013" # $Log$ # +# BUILD : 1.7.13 (1013) +# BUGS : +# NOTES : bs will now check for a bot on /bs kick +# # BUILD : 1.7.13 (1012) # BUGS : 453 # NOTES : gcc4 compiling fixes |