summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorevktalo <evktalo@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-20 09:54:17 +0000
committerevktalo <evktalo@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-20 09:54:17 +0000
commit2e507b0064aca5b5cd9256f2837cf6178055670b (patch)
treedeabd8fc7387c676e319dddfb33a6d3100a6e8fa /crawl-ref
parentc52e267a7c4023d9ec765ebbf6ce0a44f811a636 (diff)
downloadcrawl-ref-2e507b0064aca5b5cd9256f2837cf6178055670b.tar.gz
crawl-ref-2e507b0064aca5b5cd9256f2837cf6178055670b.zip
Don't make a milestone of reaching the Hive bottom, just for entering.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10346 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/notes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index bffe947996..9cc9e4b302 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -445,7 +445,7 @@ void Note::check_milestone() const
if (dep == 1)
mark_milestone("enter", "entered " + branch + ".");
- else if (dep == _dungeon_branch_depth(br))
+ else if (dep == _dungeon_branch_depth(br) && br != BRANCH_HIVE)
{
std::string level = place_name(packed_place, true, true);
if (level.find("Level ") == 0)