From cddcbe3e4f761ff2e8ba5261a77c976381715d35 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Wed, 4 Oct 2017 18:00:27 -0400 Subject: [PATCH] Fixes shaking people up while buckled into a bed/resin nest (#31283) * Fixes shaking people up when buckled into bed * CB --- code/modules/mob/living/carbon/carbon_defense.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/carbon_defense.dm b/code/modules/mob/living/carbon/carbon_defense.dm index 5f1b08fae32..8a3ea44afa2 100644 --- a/code/modules/mob/living/carbon/carbon_defense.dm +++ b/code/modules/mob/living/carbon/carbon_defense.dm @@ -249,6 +249,9 @@ if(health >= 0 && !(status_flags & FAKEDEATH)) if(lying) + if(buckled) + to_chat(M, "You need to unbuckle [src] first to do that!") + return M.visible_message("[M] shakes [src] trying to get [p_them()] up!", \ "You shake [src] trying to get [p_them()] up!") else