mirror of
https://github.com/anope/anope.git
synced 2026-07-04 22:33:12 +02:00
BUILD : 1.7.5 (412) BUGS : 169 NOTES : A minor touch up to prevent issues
git-svn-id: svn://svn.anope.org/anope/trunk@412 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@276 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
5b565cd77c
commit
5f86503277
+5
-2
@@ -138,9 +138,12 @@ int m_privmsg(char *source, char *receiver, char *msg)
|
||||
}
|
||||
|
||||
if (*receiver == '#') {
|
||||
if (s_BotServ && (ci = cs_findchan(receiver)))
|
||||
if (!(ci->flags & CI_VERBOTEN) && ci->c && ci->bi) /* Some paranoia checks */
|
||||
if (s_BotServ && (ci = cs_findchan(receiver))) {
|
||||
/* Some paranoia checks */
|
||||
if (!(ci->flags & CI_VERBOTEN) && ci->c && ci->bi) {
|
||||
botchanmsgs(u, ci, msg);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
||||
/* Check if we should ignore. Operators always get through. */
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="5"
|
||||
VERSION_BUILD="411"
|
||||
VERSION_BUILD="412"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.5 (412)
|
||||
# BUGS : 169
|
||||
# NOTES : A minor touch up to prevent issues
|
||||
#
|
||||
# BUILD : 1.7.5 (411)
|
||||
# BUGS : 197
|
||||
# NOTES : Fixed hostserv message on removal of vhost
|
||||
|
||||
Reference in New Issue
Block a user