summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/describe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 5710949b8d..475ce9a72b 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2811,7 +2811,7 @@ void get_monster_db_desc(const monsters& mons, describe_info &inf,
// And quotes {due}
if (mons.props.exists("quote"))
- inf.body << std::string(mons.props["quote"]);
+ inf.quote = mons.props["quote"].get_string();
else
inf.quote = getQuoteString(db_name);