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

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