diff options
-rw-r--r-- | src/messages.c | 7 | ||||
-rw-r--r-- | version.log | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/src/messages.c b/src/messages.c index 6972dd116..62b986267 100644 --- a/src/messages.c +++ b/src/messages.c @@ -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. */ diff --git a/version.log b/version.log index d094ecf85..1d3dbe0a3 100644 --- a/version.log +++ b/version.log @@ -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 |