X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/7a425f2db3cde303188531028a0ab34ca671e23b..bebc68755d618cd2392dd187676128ee32bbee56:/modules/m_invite.c diff --git a/modules/m_invite.c b/modules/m_invite.c index 2a711e4..8dd0a73 100644 --- a/modules/m_invite.c +++ b/modules/m_invite.c @@ -145,12 +145,24 @@ m_invite(struct Client *client_p, struct Client *source_p, int parc, const char /* unconditionally require ops, unless the channel is +g */ /* treat remote clients as chanops */ - if(MyClient(source_p) && !is_any_op(msptr) && !IsOverride(source_p) && + if(MyClient(source_p) && !is_any_op(msptr) && !(chptr->mode.mode & MODE_FREEINVITE)) { - sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED), - me.name, source_p->name, parv[2]); - return 0; + if(IsOverride(source_p)) + { + sendto_wallops_flags(UMODE_WALLOP, &me, + "%s is overriding INVITE [%s] on [%s]", + get_oper_name(source_p), target_p->name, chptr->chname); + sendto_server(NULL, chptr, NOCAPS, NOCAPS, + ":%s WALLOPS :%s is overriding INVITE [%s] on [%s]", + me.name, get_oper_name(source_p), target_p->name, chptr->chname); + } + else + { + sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED), + me.name, source_p->name, parv[2]); + return 0; + } } if (IsSetNoInvite(target_p))