From a07a22bd5adbfc029a02ed19c244c2d6cdfdd215 Mon Sep 17 00:00:00 2001 From: Helg2 Date: Tue, 6 Aug 2024 15:00:44 +0300 Subject: [PATCH] Update death.dm --- code/modules/mob/living/carbon/human/death.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm index 0b5bef65ddf..e243284b25b 100644 --- a/code/modules/mob/living/carbon/human/death.dm +++ b/code/modules/mob/living/carbon/human/death.dm @@ -9,12 +9,11 @@ // Only make the limb drop if it's not too damaged if(prob(100 - E.get_damage())) // Override the current limb status - //E.droplimb() // RUTGMC DELETION - E.droplimb(silent = TRUE) // RUTGMC ADDITION START + E.droplimb(silent = TRUE) visible_message(span_warning("[name] explodes violently into a bloody mess!"), span_highdanger("You explode violently into a bloody mess!"), - span_warning("You hear a terrible sound of breaking bones and ripping flesh!"), 3) // RUTGMC EDITION END + span_warning("You hear a terrible sound of breaking bones and ripping flesh!"), 3) if(is_a_synth) spawn_gibs()