summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-overview.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-12-18 04:52:54 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-12-18 04:52:54 +0100
commit6839ac45f041f5174fce7ef2a1916f327d8a7bec (patch)
treefb540ca7a7d64860a9a41afe6917d79271d20c27 /crawl-ref/source/dgn-overview.cc
parentcabeb528c49b7197aa74de895487938fbf08af30 (diff)
downloadcrawl-ref-6839ac45f041f5174fce7ef2a1916f327d8a7bec.tar.gz
crawl-ref-6839ac45f041f5174fce7ef2a1916f327d8a7bec.zip
Show new-style portals on ^O.
Diffstat (limited to 'crawl-ref/source/dgn-overview.cc')
-rw-r--r--crawl-ref/source/dgn-overview.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/crawl-ref/source/dgn-overview.cc b/crawl-ref/source/dgn-overview.cc
index 09e5dd9c41..2e16856f8d 100644
--- a/crawl-ref/source/dgn-overview.cc
+++ b/crawl-ref/source/dgn-overview.cc
@@ -696,6 +696,15 @@ static void _seen_portal(dungeon_feature_type which_thing, const coord_def& pos)
case DNGN_ENTER_LABYRINTH:
case DNGN_ENTER_ABYSS:
case DNGN_ENTER_PANDEMONIUM:
+ case DNGN_ENTER_ZIGGURAT:
+ case DNGN_ENTER_BAZAAR:
+ case DNGN_ENTER_TROVE:
+ case DNGN_ENTER_SEWER:
+ case DNGN_ENTER_OSSUARY:
+ case DNGN_ENTER_BAILEY:
+ case DNGN_ENTER_ICE_CAVE:
+ case DNGN_ENTER_VOLCANO:
+ case DNGN_ENTER_WIZLAB:
{
level_pos where(level_id::current(), pos);
portals_present[where] = stair_destination(pos).branch;