Put back fb7d6089158e, not setting large_ctcp_sent for CTCP ACTION.
This commit is contained in:
parent
2e918bf515
commit
641eb2c3c8
1 changed files with 3 additions and 2 deletions
|
@ -513,9 +513,10 @@ msg_channel(int p_or_n, const char *command,
|
|||
if(result == CAN_SEND_OPV ||
|
||||
!flood_attack_channel(p_or_n, source_p, chptr, chptr->chname))
|
||||
{
|
||||
if (p_or_n != NOTICE && *text == '\001')
|
||||
if (p_or_n != NOTICE && *text == '\001' &&
|
||||
strncasecmp(text + 1, "ACTION", 6))
|
||||
{
|
||||
if (strncasecmp(text + 1, "ACTION", 6) && chptr->mode.mode & MODE_NOCTCP)
|
||||
if (chptr->mode.mode & MODE_NOCTCP)
|
||||
{
|
||||
sendto_one_numeric(source_p, ERR_CANNOTSENDTOCHAN,
|
||||
form_str(ERR_CANNOTSENDTOCHAN), chptr->chname);
|
||||
|
|
Loading…
Reference in a new issue