summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarshan Shaligram <scintilla@gmail.com>2010-01-01 22:28:58 +0530
committerDarshan Shaligram <scintilla@gmail.com>2010-01-01 22:29:24 +0530
commitbccd94fcb60b16c231ec4c4ce23c42f28ee07215 (patch)
tree7ad80950c11f6b0aa0bf29742c4402866b8ae297
parent9e0813ec9b0f87fcf42f4a48b312e4ae8be94179 (diff)
downloadcrawl-ref-bccd94fcb60b16c231ec4c4ce23c42f28ee07215.tar.gz
crawl-ref-bccd94fcb60b16c231ec4c4ce23c42f28ee07215.zip
Reduce chances of Shoals island rings further.
-rw-r--r--crawl-ref/source/dgn-shoals.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dgn-shoals.cc b/crawl-ref/source/dgn-shoals.cc
index 035d7cc9ad..428a6cf90e 100644
--- a/crawl-ref/source/dgn-shoals.cc
+++ b/crawl-ref/source/dgn-shoals.cc
@@ -196,7 +196,7 @@ static void _shoals_build_island()
_shoals_island_center(c, N_PERTURB_ISLAND_CENTER,
random_range(ISLAND_CENTER_RADIUS_LOW,
ISLAND_CENTER_RADIUS_HIGH),
- 40, 60, one_chance_in(5));
+ 40, 60, one_chance_in(10));
const int additional_heights = random2(4);
for (int i = 0; i < additional_heights; ++i) {
const int addition_offset = random_range(2, 10);
@@ -207,7 +207,7 @@ static void _shoals_build_island()
N_PERTURB_OFFSET_HIGH),
random_range(PERTURB_OFFSET_RADIUS_LOW,
PERTURB_OFFSET_RADIUS_HIGH),
- 25, 35, one_chance_in(5));
+ 25, 35, one_chance_in(10));
}
}