summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-12 20:43:52 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-12 20:43:52 +0100
commit0b63c742e449325509fad22dc792257e18475c52 (patch)
tree081091d318bddae958e61e5e927138d955987fd1 /crawl-ref
parent65790ee97793071854a77539b4cbcb5c5f596d0f (diff)
downloadcrawl-ref-0b63c742e449325509fad22dc792257e18475c52.tar.gz
crawl-ref-0b63c742e449325509fad22dc792257e18475c52.zip
Change Slime Pits starting range from 5-8 to 6-8.
Before the Lair was shortened, this used to be 8-10. This change pushes them back into the last three levels. In Mantis tracker item 297, rob suggested 7-8, which would also be okay, but I prefer a range where it can occasionally co-appear with another subbranch, namely Snake with 3-6.
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/ng-init.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/ng-init.cc b/crawl-ref/source/ng-init.cc
index 9d1c55b901..9fc0cd32f9 100644
--- a/crawl-ref/source/ng-init.cc
+++ b/crawl-ref/source/ng-init.cc
@@ -60,7 +60,7 @@ void initialise_branch_depths()
branches[BRANCH_ELVEN_HALLS].startdepth = random_range(3, 4);
branches[BRANCH_LAIR].startdepth = random_range(8, 13);
branches[BRANCH_HIVE].startdepth = random_range(11, 16);
- branches[BRANCH_SLIME_PITS].startdepth = random_range(5, 8);
+ branches[BRANCH_SLIME_PITS].startdepth = random_range(6, 8);
#ifndef SHOALS_TESTING
if ( coinflip() )
{