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