summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-18 20:21:53 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-18 20:21:53 +0000
commit341258b95e2dde491b2b8aef794e5fd6ac3156ee (patch)
tree260ca53fb36d35627b441d400b26b4beb8404135 /crawl-ref/source/describe.cc
parentc64b21cdfddbb84b459273e7990bd80a1e91d970 (diff)
downloadcrawl-ref-341258b95e2dde491b2b8aef794e5fd6ac3156ee.tar.gz
crawl-ref-341258b95e2dde491b2b8aef794e5fd6ac3156ee.zip
Add the framework for descriptions for abilities to be read from the
ability menu (a!) Currently only contains descriptions for Zin, TSO and "Renounce Religion". Also, now I'm worried that players might accidentally press '?' instead of '!' and then apply an ability when they only wanted to read its description. (Of course, with some of them you can opt out, e.g. because they need targeting, but for others it's a real problem.) There must be a good solution around somewhere. Abilities are not (yet) searchable in the database. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5958 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 669453395b..74eefe2487 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1836,7 +1836,7 @@ void describe_feature_wide(int x, int y)
if (Options.tutorial_left)
tutorial_describe_pos(x, y);
- if ( getch() == 0 )
+ if (getch() == 0)
getch();
}
@@ -1853,7 +1853,8 @@ static bool _show_item_description(const item_def &item)
if (item.has_spells())
{
if (item.base_type == OBJ_BOOKS && !player_can_read_spellbook( item ))
- return false;
+ return (false);
+
formatted_string fs;
item_def dup = item;
spellbook_contents( dup,
@@ -1862,10 +1863,10 @@ static bool _show_item_description(const item_def &item)
: RBOOK_USE_STAFF,
&fs );
fs.display(2, -2);
- return true;
+ return (true);
}
- return false;
+ return (false);
}
static bool _describe_spells(const item_def &item)