From 5d754d46b43440640c7ecedfe9c81f39fe9d5d83 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Sun, 3 Nov 2024 08:28:13 -0500 Subject: [PATCH] tweak: slightly reduce spawn rate of boulders on blocked burrows (#27117) --- code/modules/lavaland/caves_theme.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/lavaland/caves_theme.dm b/code/modules/lavaland/caves_theme.dm index 6a47985fcf4..2b69cfd5ee1 100644 --- a/code/modules/lavaland/caves_theme.dm +++ b/code/modules/lavaland/caves_theme.dm @@ -137,7 +137,7 @@ GLOBAL_LIST_INIT(caves_default_flora_spawns, list( perlin_upper_range = 0.3 /datum/caves_theme/burrows/on_change(turf/T) - if(prob(9)) + if(prob(7)) new /obj/structure/flora/ash/rock/style_random(T) else if(prob(5)) lavaland_caves_spawn_flora(T)