summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ng-init.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-09-15 18:54:57 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-09-15 18:56:18 +0200
commitf0ae9ddb47884aa82a475d88738561f72033deee (patch)
tree1ac46955ccac51e2e523536edad05b8a6d43765a /crawl-ref/source/ng-init.cc
parent69fad1d4199dace68b111023159e75781078e698 (diff)
downloadcrawl-ref-f0ae9ddb47884aa82a475d88738561f72033deee.tar.gz
crawl-ref-f0ae9ddb47884aa82a475d88738561f72033deee.zip
Make the Forest trunk-only.
It's in a better shape than LO or Dj, but the consensus seems to be that it still needs a lot of polishing and balancing.
Diffstat (limited to 'crawl-ref/source/ng-init.cc')
-rw-r--r--crawl-ref/source/ng-init.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/ng-init.cc b/crawl-ref/source/ng-init.cc
index 710e53ec32..7f5c46b3c6 100644
--- a/crawl-ref/source/ng-init.cc
+++ b/crawl-ref/source/ng-init.cc
@@ -66,12 +66,14 @@ void initialise_branch_depths()
// You will get one of Shoals/Swamp and one of Spider/Snake.
// This way you get one "water" branch and one "poison" branch.
- const branch_type disabled_branch[] =
+ branch_type disabled_branch[] =
{
random_choose(BRANCH_SWAMP, BRANCH_SHOALS, -1),
random_choose(BRANCH_SNAKE_PIT, BRANCH_SPIDER_NEST, -1),
random_choose(BRANCH_CRYPT, BRANCH_FOREST, -1),
};
+ if (Version::ReleaseType != VER_ALPHA)
+ disabled_branch[2] = BRANCH_FOREST;
for (unsigned int i = 0; i < ARRAYSZ(disabled_branch); ++i)
{