replaces chasm spawn from tendrils with lava (#17340)

This commit is contained in:
Molti
2023-01-10 18:50:37 -06:00
committed by GitHub
parent ae9f720dca
commit d0abdd2d33

View File

@@ -85,8 +85,8 @@ GLOBAL_LIST_INIT(tendrils, list())
for(var/mob/M in range(7,src))
shake_camera(M, 15, 1)
playsound(get_turf(src),'sound/effects/explosionfar.ogg', 200, 1)
visible_message(span_boldannounce("The tendril falls inward, the ground around it widening into a yawning chasm!"))
visible_message(span_boldannounce("The tendril falls inward, the ground around it churning into bubbling lava!"))
for(var/turf/T in range(2,src))
if(!T.density)
T.TerraformTurf(/turf/open/chasm/lavaland, /turf/open/chasm/lavaland, flags = CHANGETURF_INHERIT_AIR)
T.TerraformTurf(/turf/open/lava/smooth/lava_land_surface, /turf/open/lava/smooth/lava_land_surface, flags = CHANGETURF_INHERIT_AIR)
qdel(src)