From 53cf9765bc40f958a2778b8bc1224fa63db6cb7b Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Wed, 10 May 2023 14:10:13 -0500 Subject: [PATCH] xenos no longer permakill dead carbon mobs by consuming them (#20952) --- code/modules/mob/living/carbon/carbon_life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/carbon_life.dm b/code/modules/mob/living/carbon/carbon_life.dm index b7e52cb137e..e991281fb7f 100644 --- a/code/modules/mob/living/carbon/carbon_life.dm +++ b/code/modules/mob/living/carbon/carbon_life.dm @@ -242,7 +242,7 @@ LAZYREMOVE(stomach_contents, M) continue if(stat != DEAD) - if(M.stat == DEAD) + if(M.stat == DEAD && !iscarbon(M)) LAZYREMOVE(stomach_contents, M) qdel(M) continue