Handle limited channel messages

Maybe improved later to signify they are limited messages. closes #315
This commit is contained in:
TingPing 2013-05-17 06:10:02 -03:00
parent 57b74c3de9
commit 78eb3e7522
1 changed files with 4 additions and 0 deletions

View File

@ -1131,6 +1131,10 @@ process_named_msg (session *sess, char *type, char *word[], char *word_eol[])
int id = FALSE; /* identified */
if (*to)
{
/* Handle limited channel messages, for now no special event */
if (strchr (serv->nick_prefixes, to[0]) != NULL)
to++;
text = word_eol[4];
if (*text == ':')
text++;