mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-17 19:20:20 +00:00
Handle limited channel messages
Maybe improved later to signify they are limited messages. closes #315
This commit is contained in:
@@ -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++;
|
||||||
|
|||||||
Reference in New Issue
Block a user