the message history.
This is just a small patch; I'm not sure why message playback only parses formatted strings for the tutorial channel (but it's explicitly done, there's probably a good reason). For now, all channels except tutorial strip out <color> formatting before storing in history.
Another fix might be to not let the fire prompt messages go into the history; they're just spam.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3484 c06c8d41-db1a-0410-9941-cceddc491573
7FUHFAXXCAL5TZ3MGUVMWH44637Z7WYJOM5Y5P6K6YPO22TNLDJQC
mpr_store_messages(fs.to_colour_string(), channel, param);
// message playback explicitly only handles colors for
// the tutorial channel... guess we'll store bare strings
// for the rest, then.
if (channel == MSGCH_TUTORIAL) {
mpr_store_messages(fs.to_colour_string(), channel, param);
} else {
mpr_store_messages(unformatted, channel, param);
}