From 479c18f13c6b627dce3ffb193571e472ed67f106 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Mon, 28 Aug 2017 23:32:21 -0400 Subject: [PATCH 1/2] Ceiling Broke --- code/game/turfs/simulated/chasm.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/turfs/simulated/chasm.dm b/code/game/turfs/simulated/chasm.dm index a51240c969d..6c2e4993615 100644 --- a/code/game/turfs/simulated/chasm.dm +++ b/code/game/turfs/simulated/chasm.dm @@ -133,6 +133,8 @@ 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!") /turf/open/chasm/straight_down/lava_land_surface From d2659b327e378c2cd173b7f9c3998e9e20f3eb78 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Tue, 29 Aug 2017 10:17:24 -0400 Subject: [PATCH 2/2] Sound --- code/game/turfs/simulated/chasm.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/turfs/simulated/chasm.dm b/code/game/turfs/simulated/chasm.dm index 6c2e4993615..a7acd8d6fa7 100644 --- a/code/game/turfs/simulated/chasm.dm +++ b/code/game/turfs/simulated/chasm.dm @@ -135,6 +135,7 @@ 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