summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc8
1 files changed, 1 insertions, 7 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 81e6c96234..477f9bddbe 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2406,13 +2406,7 @@ void describe_monsters(const monsters& mons)
std::ostringstream body;
std::string title, prefix, suffix, quote;
- const std::string capname = mons.name(DESC_CAP_A);
- title = capname;
- if (mons.has_base_name())
- {
- title += ", ";
- title += mons.base_name(DESC_NOCAP_THE, false);
- }
+ title = mons.full_name(DESC_CAP_A, true);
std::string db_name = mons.base_name(DESC_DBNAME);
if (mons_is_mimic(mons.type) && mons.type != MONS_GOLD_MIMIC)