From 323cfdde5112b348a6069c1183bbcc0cad8d92ee Mon Sep 17 00:00:00 2001 From: VerySoft Date: Fri, 8 Jul 2022 08:52:35 -0400 Subject: [PATCH] dying as a TFed mob in a tummy counts as a vore death --- code/modules/mob/living/death.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/death.dm b/code/modules/mob/living/death.dm index 94776d570e9..a5e5fece268 100644 --- a/code/modules/mob/living/death.dm +++ b/code/modules/mob/living/death.dm @@ -17,6 +17,10 @@ //VOREStation Edit End nest = null + if(isbelly(loc) && tf_mob_holder) + mind?.vore_death = TRUE + tf_mob_holder.mind?.vore_death = TRUE + for(var/datum/soul_link/S as anything in owned_soul_links) S.owner_died(gibbed) for(var/datum/soul_link/S as anything in shared_soul_links)