summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
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;