1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 11:16:38 +02:00

# BUILD : 1.7.13 (1004)

# BUGS  : 333
# NOTES : Fixed botserv's mode stuff with protect umode

git-svn-id: svn://svn.anope.org/anope/trunk@1004 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@729 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-03-03 10:57:27 +00:00
parent 2bd37f21b5
commit c98b577f21
3 changed files with 7 additions and 2 deletions
+1
View File
@@ -34,6 +34,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
03/02 F Fixed possible overflow in process(). [#445]
03/02 F Fixed memleak in do_cmode(). [#430]
03/03 F Rage, Bahamut and Viagra will now use the correct server desc. [#467]
03/03 F Fixed botserv's mode behaviour with protect umode. [#333]
Provided by nenolod. <nenolod@nenolod.net> - 2006
02/03 A Support for Charybdis IRCd. [ #00]
+1 -1
View File
@@ -374,7 +374,7 @@ int do_util(User * u, CSModeUtil * util)
} else if (*util->mode == '-' && !is_same && (ci->flags & CI_PEACE)
&& (get_access(u2, ci) >= get_access(u, ci))) {
notice_lang(s_ChanServ, u, PERMISSION_DENIED);
} else if (*util->mode == '-' && is_protected(u2)) {
} else if (*util->mode == '-' && is_protected(u2) && !is_same) {
notice_lang(s_ChanServ, u, PERMISSION_DENIED);
} else {
anope_cmd_mode(whosends(ci), c->name, "%s %s", util->mode,
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="13"
VERSION_EXTRA="-svn"
VERSION_BUILD="1003"
VERSION_BUILD="1004"
# $Log$
#
# BUILD : 1.7.13 (1004)
# BUGS : 333
# NOTES : Fixed botserv's mode stuff with protect umode
#
# BUILD : 1.7.13 (1003)
# BUGS : 467
# NOTES : Fixed server desc for several ircds