From 688e5ccc12db9c01b84bdbb5084a1502de0ff4f7 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 29 Oct 2017 14:14:22 +0200 Subject: [PATCH] Removes a redundant double check from digestion_death. -If we get into this proc the victim is already dead and there's no need for a re-kill. -Essentially the cause behind mouse carcasses screaming in the gut. -Thing was calling the death proc for the already dead mob and the death proc is what contains the scream on mice. --- code/modules/vore/eating/belly_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/belly_vr.dm b/code/modules/vore/eating/belly_vr.dm index 90560a26e70..7babf241ef2 100644 --- a/code/modules/vore/eating/belly_vr.dm +++ b/code/modules/vore/eating/belly_vr.dm @@ -266,7 +266,7 @@ // Indigestable items are removed, and M is deleted. /datum/belly/proc/digestion_death(var/mob/living/M) is_full = 1 - M.death(1) + //M.death(1) // "Stop it he's already dead..." Basically redundant and the reason behind screaming mouse carcasses. internal_contents -= M // If digested prey is also a pred... anyone inside their bellies gets moved up.