From 688e5ccc12db9c01b84bdbb5084a1502de0ff4f7 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 29 Oct 2017 14:14:22 +0200 Subject: [PATCH 1/2] 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. From 972af3b1dd028b70cc49f63c33a53980cd8d8212 Mon Sep 17 00:00:00 2001 From: Verkister Date: Mon, 30 Oct 2017 13:05:00 +0200 Subject: [PATCH 2/2] makes player gurgledeaths give admin logs --- code/modules/vore/eating/belly_vr.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/vore/eating/belly_vr.dm b/code/modules/vore/eating/belly_vr.dm index 7babf241ef2..13a7842ff4b 100644 --- a/code/modules/vore/eating/belly_vr.dm +++ b/code/modules/vore/eating/belly_vr.dm @@ -267,6 +267,8 @@ /datum/belly/proc/digestion_death(var/mob/living/M) is_full = 1 //M.death(1) // "Stop it he's already dead..." Basically redundant and the reason behind screaming mouse carcasses. + if(M.ckey) + message_admins("[key_name(owner)] has digested [key_name(M)] in their [name] ([owner ? "JMP" : "null"])") internal_contents -= M // If digested prey is also a pred... anyone inside their bellies gets moved up.