summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/direct.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-23 12:59:16 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-23 12:59:16 +0000
commit78367ed8343d077b7975873b4319efb6b749079c (patch)
treea1a25bae06f15e156d261e82a3bec9857c0f2ac7 /crawl-ref/source/direct.cc
parentc41c70ecb42a727329d3327678ae22919f46f6c7 (diff)
downloadcrawl-ref-78367ed8343d077b7975873b4319efb6b749079c.tar.gz
crawl-ref-78367ed8343d077b7975873b4319efb6b749079c.zip
[1756807] Rock stairs officially renamed to escape hatches.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1913 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/direct.cc')
-rw-r--r--crawl-ref/source/direct.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/direct.cc b/crawl-ref/source/direct.cc
index 962bc0f82f..eaee6f37ea 100644
--- a/crawl-ref/source/direct.cc
+++ b/crawl-ref/source/direct.cc
@@ -1306,13 +1306,13 @@ std::string raw_feature_description(dungeon_feature_type grid,
case DNGN_OPEN_DOOR:
return ("open door");
case DNGN_ROCK_STAIRS_DOWN:
- return ("rock staircase leading down");
+ return ("escape hatch in the floor");
+ case DNGN_ROCK_STAIRS_UP:
+ return ("escape hatch in the ceiling");
case DNGN_STONE_STAIRS_DOWN_I:
case DNGN_STONE_STAIRS_DOWN_II:
case DNGN_STONE_STAIRS_DOWN_III:
return ("stone staircase leading down");
- case DNGN_ROCK_STAIRS_UP:
- return ("rock staircase leading up");
case DNGN_STONE_STAIRS_UP_I:
case DNGN_STONE_STAIRS_UP_II:
case DNGN_STONE_STAIRS_UP_III: