mirror of
https://github.com/anope/anope.git
synced 2026-06-28 17:56:38 +02:00
BUILD : 1.7.6 (447) BUGS : NOTES : New botserv bot nicks need to be unregistered nicks from now on
git-svn-id: svn://svn.anope.org/anope/trunk@447 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@301 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
fd63b1d276
commit
e5e98cc9e5
@@ -1,6 +1,7 @@
|
||||
Anope Version S V N
|
||||
-------------------
|
||||
Provided by Anope Dev. <dev@anope.org> - 2004
|
||||
11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00]
|
||||
|
||||
Provided by Trystan <trystan@nomadirc.net> - 2004
|
||||
11/16 F NickTracking could allow usage of forbidden nick in some cases. [ #00]
|
||||
|
||||
+6
-7
@@ -1257,14 +1257,13 @@ static int do_bot(User * u)
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
/* We check whether the nick is registered, and drop it if so. */
|
||||
/* We check whether the nick is registered, and inform the user
|
||||
* if so. You need to drop the nick manually before you can use
|
||||
* it as a bot nick from now on -GD
|
||||
*/
|
||||
if ((na = findnick(nick))) {
|
||||
if (NSSecureAdmins && nick_is_services_admin(na->nc)
|
||||
&& !is_services_root(u)) {
|
||||
notice_lang(s_BotServ, u, PERMISSION_DENIED);
|
||||
return MOD_CONT;
|
||||
}
|
||||
delnick(na);
|
||||
notice_lang(s_BotServ, u, NICK_X_IN_USE, nick);
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
bi = makebot(nick);
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="6"
|
||||
VERSION_BUILD="446"
|
||||
VERSION_BUILD="447"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.6 (447)
|
||||
# BUGS :
|
||||
# NOTES : New botserv bot nicks need to be unregistered nicks from now on
|
||||
#
|
||||
# BUILD : 1.7.6 (446)
|
||||
# BUGS : N/A
|
||||
# NOTES : 1. Added a debug message to do_kill(), 2. nsCheckNickTracking() could return true in some cases where the nick
|
||||
|
||||
Reference in New Issue
Block a user