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.
This commit is contained in:
Verkister
2017-10-29 14:14:22 +02:00
parent 22a42902f5
commit 688e5ccc12
+1 -1
View File
@@ -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.