Merge pull request #166 from theshadowfog/patch-2

Update nTox.c
This commit is contained in:
irungentoo 2013-07-30 09:27:10 -07:00
commit 066c5e4780

View File

@ -151,6 +151,12 @@ void line_eval(char lines[HISTORY][STRING_LENGTH], char *line)
do_refresh();
}
else if (line[1] == 'h') { //help
new_lines("[i] commands: /f ID (to add friend), /m friendnumber message (to send message), /s status (to change status)");
new_lines("[i] /l list (list friends), /h for help, /n nick (to change nickname), /q (to quit)");
}
else if (line[1] == 'q') { //exit
endwin();
exit(EXIT_SUCCESS);