X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/7a425f2db3cde303188531028a0ab34ca671e23b..82c11fc45cb57fc31f3dbfd97bd578865a0683ce:/modules/core/m_part.c diff --git a/modules/core/m_part.c b/modules/core/m_part.c index 61c585b..334665b 100644 --- a/modules/core/m_part.c +++ b/modules/core/m_part.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_part.c 98 2005-09-11 03:37:47Z nenolod $ */ #include "stdinc.h" @@ -40,6 +39,7 @@ #include "s_conf.h" #include "packet.h" #include "inline/stringops.h" +#include "channel.h" static int m_part(struct Client *, struct Client *, int, const char **); @@ -55,6 +55,7 @@ DECLARE_MODULE_AV1(part, NULL, NULL, part_clist, NULL, NULL, "$Revision: 98 $"); static void part_one_client(struct Client *client_p, struct Client *source_p, char *name, char *reason); +struct module_modes ModuleModes; /* ** m_part @@ -124,11 +125,11 @@ part_one_client(struct Client *client_p, struct Client *source_p, char *name, ch * only allow /part reasons in -m chans */ if(reason[0] && (is_any_op(msptr) || !MyConnect(source_p) || - ((can_send(chptr, source_p, msptr) > 0 && + ((can_send(chptr, source_p, msptr) > 0 && ConfigFileEntry.use_part_messages && (source_p->localClient->firsttime + ConfigFileEntry.anti_spam_exit_message_time) < rb_current_time())))) { - if(chptr->mode.mode & MODE_NOCOLOR) + if(chptr->mode.mode & ModuleModes.MODE_NOCOLOR && (!ConfigChannel.exempt_cmode_c || !is_any_op(msptr))) { rb_strlcpy(reason2, reason, BUFSIZE); strip_colour(reason2);