From 5a1a9596b2b2d2d36df854fbea7adb6d4bb8c605 Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Sat, 7 Nov 2009 18:40:15 -0500 Subject: Fix the vestibule exit portal --- crawl-ref/source/misc.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/misc.cc') diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc index c4d3d9a591..76b1b2af31 100644 --- a/crawl-ref/source/misc.cc +++ b/crawl-ref/source/misc.cc @@ -1779,7 +1779,8 @@ void up_stairs(dungeon_feature_type force_stair, if (get_feature_dchar(stair_find) == DCHAR_ARCH && feat_stair_direction(stair_find) != CMD_NO_CMD && stair_find != DNGN_ENTER_ZOT - && stair_find != DNGN_RETURN_FROM_ZOT) + && stair_find != DNGN_RETURN_FROM_ZOT + && stair_find != DNGN_EXIT_HELL) { down_stairs(you.your_level, force_stair, entry_cause); return; @@ -2121,7 +2122,8 @@ void down_stairs( int old_level, dungeon_feature_type force_stair, if (get_feature_dchar(stair_find) == DCHAR_ARCH && feat_stair_direction(stair_find) != CMD_NO_CMD && stair_find != DNGN_ENTER_ZOT - && stair_find != DNGN_RETURN_FROM_ZOT) + && stair_find != DNGN_RETURN_FROM_ZOT + && stair_find != DNGN_EXIT_HELL) { ; } -- cgit v1.2.3-54-g00ecf