From 750ab086abb255b63ebc058c1e914e1cb8964381 Mon Sep 17 00:00:00 2001 From: Jack Edge Date: Sat, 22 Apr 2017 23:05:28 +0100 Subject: [PATCH] Doors crushing people makes a visible message :cl: coiax fix: When you are crushed by a door, it prints a visible message, instead of, in some cases, silently damaging you. /:cl: Not all things damaged by doors would scream or even be stunned. --- code/game/machinery/doors/door.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index c57c210855a..807d4c9aca9 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -285,6 +285,7 @@ /obj/machinery/door/proc/crush() for(var/mob/living/L in get_turf(src)) + L.visible_message("[src] closes on [L], crushing them!", "[src] closes on you and crushes you!") if(isalien(L)) //For xenos L.adjustBruteLoss(DOOR_CRUSH_DAMAGE * 1.5) //Xenos go into crit after aproximately the same amount of crushes as humans. L.emote("roar")