From e70b6ceb3311da16c3a7f15c63b57225c400d0bb Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 30 Aug 2017 17:06:38 -0500 Subject: [PATCH] Chasms will alert mobs below them when they form --- code/game/turfs/simulated/chasm.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/turfs/simulated/chasm.dm b/code/game/turfs/simulated/chasm.dm index a51240c969..a7acd8d6fa 100644 --- a/code/game/turfs/simulated/chasm.dm +++ b/code/game/turfs/simulated/chasm.dm @@ -133,6 +133,9 @@ drop_y = y if(z+1 <= world.maxz) drop_z = z+1 + var/turf/T = locate(drop_x, drop_y, drop_z) + T.visible_message("The ceiling gives way!") + playsound(T, 'sound/effects/break_stone.ogg', 50, 1) /turf/open/chasm/straight_down/lava_land_surface