summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.h
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2011-01-22 13:58:17 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2011-01-22 13:58:17 +0100
commit9bbcac556249573e0d8ff52834d52f347512ce56 (patch)
treecf7f1fd28687594e0d43519cd480ab07cc6accd9 /crawl-ref/source/itemname.h
parent70ad4111e27a253051cd45a020f789b05612f940 (diff)
downloadcrawl-ref-9bbcac556249573e0d8ff52834d52f347512ce56.tar.gz
crawl-ref-9bbcac556249573e0d8ff52834d52f347512ce56.zip
Turn check_item_knowledge into a void function, remove quiet param.
You're bound to either know or don't know some items, so we don't need the special "no items" message anymore.
Diffstat (limited to 'crawl-ref/source/itemname.h')
-rw-r--r--crawl-ref/source/itemname.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/itemname.h b/crawl-ref/source/itemname.h
index 92a36358f8..2f61522f43 100644
--- a/crawl-ref/source/itemname.h
+++ b/crawl-ref/source/itemname.h
@@ -93,7 +93,7 @@ int property(const item_def &item, int prop_type);
const char* racial_description_string(const item_def& item, bool terse = false);
-bool check_item_knowledge(bool quiet = false, bool inverted = false);
+void check_item_knowledge(bool unknown_items = false);
std::string quant_name(const item_def &item, int quant,
description_level_type des, bool terse = false);