summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-08 07:52:36 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-08 07:52:36 +0000
commitcebfd4f93efdfe6cc517f1bda0a59699a8149d3e (patch)
tree6793a9eed2d7ba84c0c1577c7b85ac20ad6058b9 /crawl-ref/source/misc.cc
parente94375e1a0ecdbfa3032609c29a42eb071d3682a (diff)
downloadcrawl-ref-cebfd4f93efdfe6cc517f1bda0a59699a8149d3e.tar.gz
crawl-ref-cebfd4f93efdfe6cc517f1bda0a59699a8149d3e.zip
Apply previous fixes to 0.4.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.4@6450 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/misc.cc')
-rw-r--r--crawl-ref/source/misc.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index 715a70edd3..2ebe2153f9 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -1822,8 +1822,11 @@ void down_stairs( int old_level, dungeon_feature_type force_stair,
// reaching the Abyss.
if (grd[you.x_pos][you.y_pos] == DNGN_ENTER_ABYSS)
mark_milestone("abyss.enter", "entered the Abyss!");
- else if (grd[you.x_pos][you.y_pos] == DNGN_EXIT_ABYSS)
+ else if (grd[you.x_pos][you.y_pos] == DNGN_EXIT_ABYSS
+ && you.char_direction != GDT_GAME_START)
+ {
mark_milestone("abyss.exit", "escaped from the Abyss!");
+ }
}
#endif