summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_item.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-12-24 00:41:55 +0100
committerAdam Borowski <kilobyte@angband.pl>2012-12-27 15:54:52 +0100
commit20c7c20133d6101eeea09193fda4e8036c607565 (patch)
tree11bf0b8886f1c02caab45ed6187e8637c8daeea1 /crawl-ref/source/l_item.cc
parentb7904db5ad04c762b8f338d943ecb9611602480d (diff)
downloadcrawl-ref-20c7c20133d6101eeea09193fda4e8036c607565.tar.gz
crawl-ref-20c7c20133d6101eeea09193fda4e8036c607565.zip
Unify menu_colour_item_prefix and filtering_item_prefix.
The only reason for this madness was so searching for "ident" doesn't find identified items.
Diffstat (limited to 'crawl-ref/source/l_item.cc')
-rw-r--r--crawl-ref/source/l_item.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/l_item.cc b/crawl-ref/source/l_item.cc
index c6b7371c0b..806a17ddef 100644
--- a/crawl-ref/source/l_item.cc
+++ b/crawl-ref/source/l_item.cc
@@ -428,7 +428,7 @@ static int l_item_do_name_coloured(lua_State *ls)
if (item)
{
string name = _item_name(ls, item);
- int col = menu_colour(name, menu_colour_item_prefix(*item));
+ int col = menu_colour(name, item_prefix(*item));
string colstr = colour_to_str(col);
ostringstream out;