X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/a039358ed0a9df3b6c5db08ad481c2005a7f8ee7..a8afd89db2664fd6c845e4d158173acf67a55689:/src/channel.c diff --git a/src/channel.c b/src/channel.c index ddc397c..f18c94f 100644 --- a/src/channel.c +++ b/src/channel.c @@ -835,7 +835,12 @@ can_join(struct Client *source_p, struct Channel *chptr, char *key) s_assert(source_p->localClient != NULL); if(IsOverride(source_p)) + { + sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, + "%s is overriding JOIN to [%s]", + get_oper_name(source_p), chptr->chname); return 0; + } rb_sprintf(src_host, "%s!%s@%s", source_p->name, source_p->username, source_p->host); rb_sprintf(src_iphost, "%s!%s@%s", source_p->name, source_p->username, source_p->sockhost);