From 5dc279a92195600107c3a0c4d868bddb66c3a232 Mon Sep 17 00:00:00 2001 From: Matthew Cline Date: Mon, 19 Oct 2009 18:42:43 -0700 Subject: 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. --- crawl-ref/source/directn.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/directn.cc') 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; -- cgit v1.2.3-54-g00ecf