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.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index eef4efefa4..e8b7ef1f3a 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -2179,9 +2179,10 @@ std::string get_monster_desc(const monsters *mon, bool full_desc,
if (mondtype != DESC_NONE)
{
desc = mon->name(mondtype);
- // For named monsters also mention the base type.
+ // For named monsters also mention the base type in the form of
+ // "Morbeogh the orc priest".
if (!(mon->mname).empty())
- desc += ", " + mons_type_name(mon->type, DESC_NOCAP_A);
+ desc += " " + mons_type_name(mon->type, DESC_NOCAP_THE);
}
std::string weap = "";