From 4c697df2e933fb740194cbd05f3cd63fd588a798 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sat, 14 Oct 2017 23:18:27 +0300 Subject: [PATCH 1/2] Resets client movement delay to its initial value on death (#31674) --- code/modules/mob/living/death.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/death.dm b/code/modules/mob/living/death.dm index c38ab397c8..cd53ede7f6 100644 --- a/code/modules/mob/living/death.dm +++ b/code/modules/mob/living/death.dm @@ -73,6 +73,9 @@ med_hud_set_health() med_hud_set_status() + if (client) + client.move_delay = initial(client.move_delay) + for(var/s in ownedSoullinks) var/datum/soullink/S = s S.ownerDies(gibbed)