summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/zotdef.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-06-07 21:06:11 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-06-07 23:51:21 -0400
commit57c10a80aea6fe3093246d5bc8770f1f4a2f71df (patch)
tree02c4d414058c03c5de297c12f50073b3db48fd03 /crawl-ref/source/zotdef.cc
parentb0c9e7892796b91383c174755e9888fc75e8857d (diff)
downloadcrawl-ref-57c10a80aea6fe3093246d5bc8770f1f4a2f71df.tar.gz
crawl-ref-57c10a80aea6fe3093246d5bc8770f1f4a2f71df.zip
Remove Hall of Blades
The complaints against the branch are well documented, mostly stating Dancing Weapons are awful enemies and the Hall of Blades is filled with them.
Diffstat (limited to 'crawl-ref/source/zotdef.cc')
-rw-r--r--crawl-ref/source/zotdef.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/crawl-ref/source/zotdef.cc b/crawl-ref/source/zotdef.cc
index db0ff95c63..12edf06833 100644
--- a/crawl-ref/source/zotdef.cc
+++ b/crawl-ref/source/zotdef.cc
@@ -80,8 +80,6 @@ static bool _is_branch_fitting(branch_type pb, int wavenum)
return wavenum > 15; // 3.2K-
case BRANCH_SLIME:
return wavenum > 20 && coinflip(); // 4K-
- case BRANCH_BLADE:
- return wavenum > 30; // 6K-
case BRANCH_TOMB:
return wavenum > 30 && coinflip(); // 6K-
case BRANCH_DIS: // 8K-
@@ -704,9 +702,6 @@ void zotdef_set_wave()
case 3:
{
branch_type b = _zotdef_random_branch();
- // HoB branch waves v. rare before 10K turns
- if (b == BRANCH_BLADE && you.num_turns / ZOTDEF_CYCLE_LENGTH < 50)
- b = _zotdef_random_branch();
_zotdef_set_branch_wave(b, power);
break;
}