summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-06-07 19:53:09 -0400
committerNeil Moore <neil@s-z.org>2014-06-08 00:26:22 -0400
commit447339177ed9d098b99626068138e674376a0e46 (patch)
tree42d87e94a838996d5de1ffe51835cef26d8f145e /crawl-ref/source/directn.cc
parent57c10a80aea6fe3093246d5bc8770f1f4a2f71df (diff)
downloadcrawl-ref-447339177ed9d098b99626068138e674376a0e46.tar.gz
crawl-ref-447339177ed9d098b99626068138e674376a0e46.zip
Make Vaults exit stairs a portal.
To match the entry. The tile is already just as portal-like as the entry tile, so no change there.
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 23abb55bfe..890670727e 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -3163,7 +3163,6 @@ static string _base_feature_desc(dungeon_feature_type grid, trap_type trap)
#endif
case DNGN_RETURN_FROM_ORC:
case DNGN_RETURN_FROM_LAIR:
- case DNGN_RETURN_FROM_VAULTS:
case DNGN_RETURN_FROM_TEMPLE:
case DNGN_RETURN_FROM_DEPTHS:
return "staircase back to the Dungeon";
@@ -3184,6 +3183,7 @@ static string _base_feature_desc(dungeon_feature_type grid, trap_type trap)
return "staircase back to the Mines";
case DNGN_RETURN_FROM_TOMB:
return "staircase back to the Crypt";
+ case DNGN_RETURN_FROM_VAULTS:
case DNGN_RETURN_FROM_ZOT:
return "gate leading back out of this place";
case DNGN_EXIT_ICE_CAVE: