I think this is caused by 71_fix_nick_not_to_highlight.patch
On line 442, inbound_chanmsg: if (alert_match_word (from, prefs.irc_no_hilight)) return; // <<<--- returning, without delivering the message
if (is_hilight (from, text, sess, serv)) hilight = TRUE;
I think this should be: if (!alert_match_word (from, prefs.irc_no_hilight) && is_hilight (from, text, sess, serv)) hilight = TRUE;
Same is true for in inbound_privmsg
I think this is caused by 71_fix_ nick_not_ to_highlight. patch
On line 442, inbound_chanmsg: no_hilight) )
if (alert_match_word (from, prefs.irc_
return; // <<<--- returning, without delivering the message
if (is_hilight (from, text, sess, serv))
hilight = TRUE;
I think this should be: no_hilight) && is_hilight (from, text, sess, serv))
if (!alert_match_word (from, prefs.irc_
hilight = TRUE;
Same is true for in inbound_privmsg