summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stash.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-12 13:49:05 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-12 13:49:05 +0000
commit5e94dac9e3537693dfaa1647c143959d1ce5e069 (patch)
tree028910f8f34f595a7ef4802e0d0e5d57f5e6b65c /crawl-ref/source/stash.h
parente5241a144e28fd3aaa803a592eb4656eddc53a27 (diff)
downloadcrawl-ref-5e94dac9e3537693dfaa1647c143959d1ce5e069.tar.gz
crawl-ref-5e94dac9e3537693dfaa1647c143959d1ce5e069.zip
Better explore-stop messages.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@619 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/stash.h')
-rw-r--r--crawl-ref/source/stash.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/stash.h b/crawl-ref/source/stash.h
index 58c6d3ce2a..e6bfd8ea5a 100644
--- a/crawl-ref/source/stash.h
+++ b/crawl-ref/source/stash.h
@@ -263,8 +263,9 @@ class StashTracker
public:
static bool is_level_untrackable()
{
- return you.level_type == LEVEL_LABYRINTH
- || you.level_type == LEVEL_ABYSS;
+ return you.level_type == LEVEL_LABYRINTH
+ || you.level_type == LEVEL_ABYSS
+ || you.level_type == LEVEL_PANDEMONIUM;
}
StashTracker() : levels()