summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
authorDarshan Shaligram <dshaligram@users.sourceforge.net>2009-12-26 19:36:52 +0530
committerDarshan Shaligram <dshaligram@users.sourceforge.net>2009-12-26 19:36:52 +0530
commit7024702fd974bd3e993eec789237df0d4d29d1df (patch)
treea4301d8e7d033bab4819ecef482d9d3e59ecf1c2 /crawl-ref/source/dungeon.cc
parent14da0d8a05d8f7ca55d05a198733e9abf82208f1 (diff)
downloadcrawl-ref-7024702fd974bd3e993eec789237df0d4d29d1df.tar.gz
crawl-ref-7024702fd974bd3e993eec789237df0d4d29d1df.zip
Adjust number of islands per Shoal level.
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 88fdbddc67..a0100ed3aa 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -2138,7 +2138,7 @@ static void _shoals_build_island()
static void _shoals_init_islands(int depth)
{
- const int nislands = 25 - depth * 3;
+ const int nislands = 20 - depth * 2;
for (int i = 0; i < nislands; ++i)
_shoals_build_island();
}