Changed chat color for unimportant messages
This commit is contained in:
@@ -101,9 +101,12 @@ void Showline(int y, int x, char *msg)
|
||||
PUTCHAR(msg[i]);
|
||||
}
|
||||
}
|
||||
} else if (msg[0] == '*') {
|
||||
} else if ((msg[0] == '*') && (msg[0] == '*')) {
|
||||
colour(LIGHTRED, BLACK);
|
||||
mvprintw(y, x, msg);
|
||||
} else if (msg[0] == '*') {
|
||||
colour(LIGHTMAGENTA, BLACK);
|
||||
mvprintw(y, x, msg);
|
||||
} else {
|
||||
colour(GREEN, BLACK);
|
||||
mvprintw(y, x, msg);
|
||||
|
Reference in New Issue
Block a user