summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stash.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-11 09:56:56 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-11 09:56:56 +0000
commit8ee15e29f95da59fa00c59e22db79a4e104794f4 (patch)
tree3702f25e880318b75a4298ce70be345d7d02fc54 /crawl-ref/source/stash.h
parent4253009d0db24eb91b3daee9459f59a4a18f6142 (diff)
downloadcrawl-ref-8ee15e29f95da59fa00c59e22db79a4e104794f4.tar.gz
crawl-ref-8ee15e29f95da59fa00c59e22db79a4e104794f4.zip
[1737348] Allow stash.lua to annotate item names for autopickup so autopickup
can use matches like <Short Blades. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1832 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/stash.h')
-rw-r--r--crawl-ref/source/stash.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/stash.h b/crawl-ref/source/stash.h
index 51ce593030..3d639a6491 100644
--- a/crawl-ref/source/stash.h
+++ b/crawl-ref/source/stash.h
@@ -328,4 +328,8 @@ void describe_stash(int x, int y);
std::string userdef_annotate_item(const char *s, const item_def *item,
bool exclusive = false);
+#define STASH_LUA_SEARCH_ANNOTATE "ch_stash_search_annotate_item"
+#define STASH_LUA_DUMP_ANNOTATE "ch_stash_dump_annotate_item"
+#define STASH_LUA_VIEW_ANNOTATE "ch_stash_view_annotate_item"
+
#endif