summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-15 20:15:48 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-15 20:15:48 +0000
commit51e06c054764971800694444b6cb35369a5ce336 (patch)
tree80b9b9d51c04b749fbfc93660b58b10fcc34dd52 /crawl-ref/source/directn.cc
parentf5824a2c7390e30a801ac8b1eaa9cea7a6d3afae (diff)
downloadcrawl-ref-51e06c054764971800694444b6cb35369a5ce336.tar.gz
crawl-ref-51e06c054764971800694444b6cb35369a5ce336.zip
Fix the Vestibule having no upstairs. o_O
Fix fleeing monsters shooting at you. (BR 1994462) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5861 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 9bcc52bb8c..be41c25177 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -146,8 +146,6 @@ void direction_choose_compass( dist& moves, targeting_behaviour *beh)
}
}
while ( !moves.isCancel && moves.dx == 0 && moves.dy == 0 );
-
- return;
}
static int _targeting_cmd_to_compass( command_type command )
@@ -1800,6 +1798,8 @@ std::string raw_feature_description(dungeon_feature_type grid,
return ("stone staircase leading up");
case DNGN_ENTER_HELL:
return ("gateway to Hell");
+ case DNGN_EXIT_HELL:
+ return ("gateway back into the Dungeon");
case DNGN_TRAP_MECHANICAL:
return ("mechanical trap");
case DNGN_TRAP_MAGICAL: