Changed chat color for unimportant messages

This commit is contained in:
Michiel Broek
2005-04-23 11:14:28 +00:00
parent 2070e08969
commit db7de3deac
4 changed files with 21 additions and 7 deletions

View File

@@ -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);