summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stash.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/stash.cc')
-rw-r--r--crawl-ref/source/stash.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/stash.cc b/crawl-ref/source/stash.cc
index f38d646473..5e11499b82 100644
--- a/crawl-ref/source/stash.cc
+++ b/crawl-ref/source/stash.cc
@@ -361,7 +361,10 @@ std::string Stash::stash_item_name(const item_def &item)
class StashMenu : public InvMenu
{
public:
- StashMenu() : InvMenu(MF_SINGLESELECT), can_travel(false) { }
+ StashMenu() : InvMenu(MF_SINGLESELECT), can_travel(false)
+ {
+ set_type(MT_PICKUP);
+ }
unsigned char getkey() const;
public:
bool can_travel;