summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-10-19 18:42:43 -0700
committerMatthew Cline <zelgadis@sourceforge.net>2009-10-19 18:42:43 -0700
commit5dc279a92195600107c3a0c4d868bddb66c3a232 (patch)
tree59f205d7d2eda1b1942a3b439cc3ce6b94b1662d /crawl-ref/source/directn.cc
parent515e08e5bde575a0c51191877c4156d8b3e29399 (diff)
downloadcrawl-ref-5dc279a92195600107c3a0c4d868bddb66c3a232.tar.gz
crawl-ref-5dc279a92195600107c3a0c4d868bddb66c3a232.zip
directn.cc: Some more non-PLAIN message channels
Send messages describing unkown mimics to MSGCH_FLOOR_ITEMS, and send all of _describe_monster()'s output to MSGCH_EXAMINE.
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 77409d718e..871926350d 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -3197,7 +3197,7 @@ static void _describe_monster(const monsters *mon)
{
// First print type and equipment.
std::string text = get_monster_equipment_desc(mon) + ".";
- print_formatted_paragraph(text);
+ print_formatted_paragraph(text, MSGCH_EXAMINE);
print_wounds(mon);
@@ -3382,7 +3382,7 @@ static void _describe_cell(const coord_def& where, bool in_range)
get_mimic_item( mon, item );
std::string name = get_menu_colour_prefix_tags(item,
DESC_NOCAP_A);
- mprf("You see %s here.", name.c_str());
+ mprf(MSGCH_FLOOR_ITEMS, "You see %s here.", name.c_str());
}
mimic_item = true;
item_described = true;