Handle limited channel messages
Maybe improved later to signify they are limited messages. closes #315
This commit is contained in:
parent
57b74c3de9
commit
78eb3e7522
|
@ -1131,6 +1131,10 @@ process_named_msg (session *sess, char *type, char *word[], char *word_eol[])
|
||||||
int id = FALSE; /* identified */
|
int id = FALSE; /* identified */
|
||||||
if (*to)
|
if (*to)
|
||||||
{
|
{
|
||||||
|
/* Handle limited channel messages, for now no special event */
|
||||||
|
if (strchr (serv->nick_prefixes, to[0]) != NULL)
|
||||||
|
to++;
|
||||||
|
|
||||||
text = word_eol[4];
|
text = word_eol[4];
|
||||||
if (*text == ':')
|
if (*text == ':')
|
||||||
text++;
|
text++;
|
||||||
|
|
Loading…
Reference in New Issue