summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-11-24 12:10:59 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-11-24 12:11:41 +1000
commitbb0e38e1587778e0bc54f0ae7b19281cf10e8aa6 (patch)
treec7fe6bbff1e0b8f2e6ac485cc7bf6d04a39571d4 /crawl-ref/source/describe.cc
parent09553219c78aced327ee59e815ed239c236de59c (diff)
downloadcrawl-ref-bb0e38e1587778e0bc54f0ae7b19281cf10e8aa6.tar.gz
crawl-ref-bb0e38e1587778e0bc54f0ae7b19281cf10e8aa6.zip
Put monster-overriden quotes in the right place.
Diffstat (limited to 'crawl-ref/source/describe.cc')
-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);