summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-09-03 21:23:51 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-09-03 21:23:51 +0200
commit4c799e7eff97b11827fc1f93d60b862e0e9ac0f3 (patch)
tree3298fd958fd2da6ecefb336317aa334010e08a51 /crawl-ref/source/travel.h
parent82ca34341ad10cea9f0cef5d1da000b8185045db (diff)
downloadcrawl-ref-4c799e7eff97b11827fc1f93d60b862e0e9ac0f3.tar.gz
crawl-ref-4c799e7eff97b11827fc1f93d60b862e0e9ac0f3.zip
Announce runed doors as they come into view.
Diffstat (limited to 'crawl-ref/source/travel.h')
-rw-r--r--crawl-ref/source/travel.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/travel.h b/crawl-ref/source/travel.h
index c5431284a9..f92bc6e5e6 100644
--- a/crawl-ref/source/travel.h
+++ b/crawl-ref/source/travel.h
@@ -196,9 +196,10 @@ enum explore_stop_type
ES_ARTEFACT = 0x1000,
ES_RUNE = 0x2000,
ES_BRANCH = 0x4000,
+ ES_RUNED_DOOR = 0x8000,
// Explored into view of an item which can be sacrificied
- ES_GREEDY_SACRIFICEABLE = 0x8000,
+ ES_GREEDY_SACRIFICEABLE = 0x10000,
};
////////////////////////////////////////////////////////////////////////////
@@ -269,6 +270,7 @@ private:
vector< named_thing<int> > portals;
vector< named_thing<int> > shops;
vector< named_thing<int> > altars;
+ vector< named_thing<int> > runed_doors;
vector<string> marker_msgs;
vector<string> marked_feats;