fix tendrils spawning in deeprock oases (#29010)

This commit is contained in:
warriorstar-orion
2025-04-15 17:13:50 +00:00
committed by GitHub
parent 09c0248c02
commit 5d151c5b1b
+2 -2
View File
@@ -114,10 +114,10 @@ GLOBAL_LIST_INIT(caves_default_flora_spawns, list(
if(safe_replace(NT) && prob(min(probmodifer / distance, 100)))
var/turf/changed = NT.ChangeTurf(/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface)
if(prob(5))
new /obj/effect/spawner/random/lavaland_fauna(T)
new /obj/effect/spawner/random/lavaland_fauna(changed)
else if(prob(10))
lavaland_caves_spawn_flora(changed)
oasis_turfs |= NT
oasis_turfs |= changed
if(prob(50))
tempradius = round(tempradius / 3)