From 700f53617230f3b6d9b92493dc6971019f2bdb82 Mon Sep 17 00:00:00 2001 From: HMBGERDO <61080616+HMBGERDO@users.noreply.github.com> Date: Tue, 14 Jan 2025 17:51:24 +0100 Subject: [PATCH] [s] Replacing Sleep with Paralyze on faint (#27977) * yes * undo * switching to paralyze --- code/modules/mob/living/carbon/carbon_emote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/carbon_emote.dm b/code/modules/mob/living/carbon/carbon_emote.dm index 64fb51f2abb..a43c1680d0b 100644 --- a/code/modules/mob/living/carbon/carbon_emote.dm +++ b/code/modules/mob/living/carbon/carbon_emote.dm @@ -154,7 +154,7 @@ . = ..() if(. && isliving(user)) var/mob/living/L = user - L.SetSleeping(2 SECONDS) + L.Paralyse(2 SECONDS) /datum/emote/living/carbon/twirl key = "twirl"