From 92810ee90a516bb4c3c273cf3beb8b1a8d1c84ec Mon Sep 17 00:00:00 2001 From: Cyantime Date: Sun, 3 Dec 2017 01:13:55 -0500 Subject: [PATCH] Slimes that fail to slip lose limbs --- code/modules/mob/living/carbon/human/emote_vr.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/emote_vr.dm b/code/modules/mob/living/carbon/human/emote_vr.dm index 2d82f4ddb01..895b5530a20 100644 --- a/code/modules/mob/living/carbon/human/emote_vr.dm +++ b/code/modules/mob/living/carbon/human/emote_vr.dm @@ -84,7 +84,10 @@ log_and_message_admins("lost their [breaking] with *flip, ahahah.", src) else src.Weaken(5) - E.fracture() + if(E.cannot_break) //Prometheans go splat + E.droplimb(0,DROPLIMB_BLUNT) + else + E.fracture() message += " And breaks something!" log_and_message_admins("broke their [breaking] with *flip, ahahah.", src)