summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-15 18:51:46 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-15 18:51:46 +0000
commit24dd7bfc967050b9fcead40e820742feffe3ac49 (patch)
tree9a3f3fb2ea561bfc65beb1a9b0e3ffb45b23135a /crawl-ref/source/directn.cc
parent7426d8145861b8ec8bb2b95ca0f541cc94ac343b (diff)
downloadcrawl-ref-24dd7bfc967050b9fcead40e820742feffe3ac49.tar.gz
crawl-ref-24dd7bfc967050b9fcead40e820742feffe3ac49.zip
* Add deck names to card descriptions, and vice versa. This should
eventually be done procedurally but for now this will do. * Use non-verbose descriptions when hovering over spellbooks in Tiles, so the description will include the spell list. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9506 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index c004d28f99..71c8ec454d 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -1712,7 +1712,8 @@ void get_square_desc(const coord_def &c, describe_info &inf,
else if (oid != NON_ITEM)
{
// Second priority: objects.
- get_item_desc(mitm[oid], inf);
+ // If examine_mons is true, use terse descriptions.
+ get_item_desc(mitm[oid], inf, examine_mons);
}
else
{