summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stairs.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-09-25 20:17:28 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-09-25 20:17:28 +0200
commitc3af15acd9d3c67a561dfe2ac970c0ce50b6ffca (patch)
tree05a883b0fd35d976f967c3cbe47bd1c6ab9e63d4 /crawl-ref/source/stairs.cc
parent0ea719b7a5d9cb8208d2da379bb30fd5b6b4e5f9 (diff)
downloadcrawl-ref-c3af15acd9d3c67a561dfe2ac970c0ce50b6ffca.tar.gz
crawl-ref-c3af15acd9d3c67a561dfe2ac970c0ce50b6ffca.zip
Rename "natural traps" to "shafts".
Diffstat (limited to 'crawl-ref/source/stairs.cc')
-rw-r--r--crawl-ref/source/stairs.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/stairs.cc b/crawl-ref/source/stairs.cc
index 8cc1a5cc3c..7b3b0bb1f7 100644
--- a/crawl-ref/source/stairs.cc
+++ b/crawl-ref/source/stairs.cc
@@ -656,7 +656,7 @@ void down_stairs(dungeon_feature_type force_stair)
&& get_trap_type(you.pos()) == TRAP_SHAFT
&& stair_find != DNGN_UNDISCOVERED_TRAP);
// Latter case is falling down a shaft.
- const bool shaft = known_shaft || (force_stair == DNGN_TRAP_NATURAL);
+ const bool shaft = known_shaft || (force_stair == DNGN_TRAP_SHAFT);
level_id shaft_dest;
// Up and down both work for portals.
@@ -886,7 +886,7 @@ void down_stairs(dungeon_feature_type force_stair)
dungeon_feature_type stair_taken = stair_find;
if (shaft)
- stair_taken = DNGN_TRAP_NATURAL;
+ stair_taken = DNGN_TRAP_SHAFT;
switch (you.where_are_you)
{