summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2013-11-02 20:31:31 -0600
committerAdam Borowski <kilobyte@angband.pl>2013-11-12 06:41:06 +0100
commit1b62a5d5613b076a70117541fb9b0aa831dcf122 (patch)
treeb11ad58c0f1b8af3f10987b2c5846560cfe54e0a /crawl-ref/source/notes.cc
parentc7c129ded1e36e56fc4b992bc773c2d77c90be18 (diff)
downloadcrawl-ref-1b62a5d5613b076a70117541fb9b0aa831dcf122.tar.gz
crawl-ref-1b62a5d5613b076a70117541fb9b0aa831dcf122.zip
Transform the lower half of D into a new branch: the Depths.
D is now 16 levels (the unsealed part was 14 levels previously), and the Depths are six levels. Vaults is enterable from Depths:2-5; Abyss, Hell, and Pan portals are available for the entire length of the branch. Right now the monster set is identical to Vaults except for the absence of Vaults-specific humans. D's monster set has also been truncated, mainly on the out-of-depth front. It's my intent that this serve as a starting point for figuring out what monsters we want to split between the two branches.
Diffstat (limited to 'crawl-ref/source/notes.cc')
-rw-r--r--crawl-ref/source/notes.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index db133d7763..a893a4b45a 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -86,7 +86,6 @@ static bool _is_noteworthy_dlevel(unsigned short place)
return (lev == _dungeon_branch_depth(branch)
|| branch == BRANCH_DUNGEON && (lev % 5) == 0
- || branch == BRANCH_DUNGEON && lev == RUNE_LOCK_DEPTH + 1
|| branch != BRANCH_DUNGEON && lev == 1);
}
@@ -435,7 +434,6 @@ void Note::check_milestone() const
"entered " + branch + ".", "parent");
}
else if (dep == _dungeon_branch_depth(br)
- || dep == RUNE_LOCK_DEPTH + 1
|| br == BRANCH_ZIGGURAT)
{
string level = place_name(packed_place, true, true);
@@ -444,8 +442,7 @@ void Note::check_milestone() const
ostringstream branch_finale;
branch_finale << "reached " << level << ".";
- mark_milestone(br == BRANCH_ZIGGURAT ? "zig" :
- dep == RUNE_LOCK_DEPTH + 1 ? "br.mid" : "br.end",
+ mark_milestone(br == BRANCH_ZIGGURAT ? "zig" : "br.end",
branch_finale.str());
}
}