summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.cc
diff options
context:
space:
mode:
authorelliptic <hyperelliptical@gmail.com>2013-10-31 12:56:00 -0400
committerelliptic <hyperelliptical@gmail.com>2013-10-31 12:56:00 -0400
commitd5f0ba7bf9e0122c8087bb6a0b8e44e69bc063ce (patch)
tree612902a1c35d4a3f1456afd64ac8fc14b454c68e /crawl-ref/source/notes.cc
parentf2529f3760342cd85ead1ff7bbb6f02ffacaa364 (diff)
downloadcrawl-ref-d5f0ba7bf9e0122c8087bb6a0b8e44e69bc063ce.tar.gz
crawl-ref-d5f0ba7bf9e0122c8087bb6a0b8e44e69bc063ce.zip
Move the br.mid milestone to D:15.
To match the rune lock depth.
Diffstat (limited to 'crawl-ref/source/notes.cc')
-rw-r--r--crawl-ref/source/notes.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index d457170cfb..3779a66e73 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -86,7 +86,7 @@ static bool _is_noteworthy_dlevel(unsigned short place)
return (lev == _dungeon_branch_depth(branch)
|| branch == BRANCH_MAIN_DUNGEON && (lev % 5) == 0
- || branch == BRANCH_MAIN_DUNGEON && lev == 14
+ || branch == BRANCH_MAIN_DUNGEON && lev == 15
|| branch != BRANCH_MAIN_DUNGEON && lev == 1);
}
@@ -434,7 +434,7 @@ void Note::check_milestone() const
mark_milestone(br == BRANCH_ZIGGURAT ? "zig.enter" : "br.enter",
"entered " + branch + ".", "parent");
}
- else if (dep == _dungeon_branch_depth(br) || dep == 14
+ else if (dep == _dungeon_branch_depth(br) || dep == 15
|| br == BRANCH_ZIGGURAT)
{
string level = place_name(packed_place, true, true);
@@ -444,7 +444,7 @@ void Note::check_milestone() const
ostringstream branch_finale;
branch_finale << "reached " << level << ".";
mark_milestone(br == BRANCH_ZIGGURAT ? "zig" :
- dep == 14 ? "br.mid" : "br.end",
+ dep == 15 ? "br.mid" : "br.end",
branch_finale.str());
}
}