# HG changeset patch # User Matti Hamalainen # Date 1422442800 -7200 # Node ID 9c2ae1b966746ae60d0dc5d037a414dd22b92a55 # Parent 3fc12a4418abfa644cdd03580963afba869c4978 Change messages for join/part. diff -r 3fc12a4418ab -r 9c2ae1b96674 main.c --- a/main.c Wed Jan 28 08:08:08 2015 +0200 +++ b/main.c Wed Jan 28 13:00:00 2015 +0200 @@ -826,7 +826,7 @@ win = nnwin_find(p); nn_userhash_insert(nnUsers, nn_username_encode(p)); - printMsg(NULL, "! ½3½%s½0½ ½2½ADDED.½0½\n", p); + printMsg(NULL, "! ½3½%s½0½ ½2½JOINED.½0½\n", p); if (win != NULL) printMsg(win, "! ½3½%s½0½ ½2½joined the chat.½0½\n", p); @@ -854,7 +854,7 @@ win = nnwin_find(p); nn_userhash_delete(nnUsers, nn_username_encode(p)); - printMsg(NULL, "! ½3½%s½0½ ½1½DELETED.½0½\n", p); + printMsg(NULL, "! ½3½%s½0½ ½1½LEFT.½0½\n", p); if (win != NULL) printMsg(win, "! ½3½%s½0½ ½1½left the chat.½0½\n", p);