From e6bbb6882fdc2fbcd3a125b03f599261a4eedf42 Mon Sep 17 00:00:00 2001 From: AnturK Date: Wed, 31 Oct 2018 17:07:23 +0100 Subject: [PATCH] Calls parent in living/death (#41239) --- code/modules/mob/living/death.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/death.dm b/code/modules/mob/living/death.dm index ab04184564d..4c8be44c9fc 100644 --- a/code/modules/mob/living/death.dm +++ b/code/modules/mob/living/death.dm @@ -78,7 +78,7 @@ addtimer(CALLBACK(src, .proc/med_hud_set_status), (DEFIB_TIME_LIMIT * 10) + 1) stop_pulling() - SEND_SIGNAL(src, COMSIG_MOB_DEATH, gibbed) + . = ..() if (client) client.move_delay = initial(client.move_delay)