From 2599a2f0d80b3ee78d4891eceae5532f99a997a5 Mon Sep 17 00:00:00 2001 From: haranp Date: Sat, 28 Feb 2009 23:04:06 +0000 Subject: Fix [2644366]: place a space between prefixes and the item name. Also, fix the documentation which used to say that the prefixes are comma-separated (they're not.) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9294 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/items.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/items.cc') diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc index c91e3bd8d3..e0fec19f33 100644 --- a/crawl-ref/source/items.cc +++ b/crawl-ref/source/items.cc @@ -2293,7 +2293,7 @@ void autoinscribe() static inline std::string _autopickup_item_name(const item_def &item) { return userdef_annotate_item(STASH_LUA_SEARCH_ANNOTATE, &item, true) - + menu_colour_item_prefix(item, false) + + menu_colour_item_prefix(item, false) + " " + item.name(DESC_PLAIN); } -- cgit v1.2.3-54-g00ecf