summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 495e9e9c09..4c54ea6d17 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -1844,8 +1844,8 @@ static void _build_dungeon_level(int level_number, int level_type)
if (player_in_branch(BRANCH_LAIR))
{
int depth = player_branch_depth() + 1;
- _ruin_level(depth / 2, 10, 5 + depth / 2);
- _add_plant_clumps();
+ _ruin_level(depth / 4 + 1, depth, depth / 2 + 5);
+ _add_plant_clumps(20 - depth * 2, 20 - depth / 2, depth / 2);
}
const unsigned nvaults = Level_Vaults.size();