summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stairs.cc
diff options
context:
space:
mode:
authorpubby <pubby8@gmail.com>2013-11-10 08:21:54 -0600
committerAdam Borowski <kilobyte@angband.pl>2013-11-10 20:40:07 +0100
commit6092b33c033eab38b7acacd2e84cafb3a1935e7d (patch)
treeee128e98be0c992e95eca3cf993cee062105b913 /crawl-ref/source/stairs.cc
parent82cd9f861486d27ebc2b1097e127c7a20221393e (diff)
downloadcrawl-ref-6092b33c033eab38b7acacd2e84cafb3a1935e7d.tar.gz
crawl-ref-6092b33c033eab38b7acacd2e84cafb3a1935e7d.zip
Make all shaft falls a milestone.
Shafting only 1 floor wasn't being considered a milestone.
Diffstat (limited to 'crawl-ref/source/stairs.cc')
-rw-r--r--crawl-ref/source/stairs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/stairs.cc b/crawl-ref/source/stairs.cc
index d2ce11c0f0..58e5da9bcf 100644
--- a/crawl-ref/source/stairs.cc
+++ b/crawl-ref/source/stairs.cc
@@ -693,7 +693,7 @@ void down_stairs(dungeon_feature_type force_stair)
return;
}
- if (!known_shaft && shaft_dest.depth - you.depth > 1)
+ if (!known_shaft && shaft_dest.depth - you.depth > 0)
{
mark_milestone("shaft", "fell down a shaft to "
+ short_place_name(shaft_dest) + ".");