From 5035f5a14ee8de63083bfb706f0202cc54bb8aa9 Mon Sep 17 00:00:00 2001 From: SatinIsle <98125273+SatinIsle@users.noreply.github.com> Date: Thu, 13 Mar 2025 11:11:16 +0000 Subject: [PATCH] Fixes mantraps eating when dead (#17327) Fixed mantraps voring people who step on them when they're dead. --- code/modules/mob/living/simple_mob/subtypes/vore/plants.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/plants.dm b/code/modules/mob/living/simple_mob/subtypes/vore/plants.dm index 87157892643..68c4d9fb926 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/plants.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/plants.dm @@ -72,6 +72,8 @@ /mob/living/simple_mob/vore/mantrap/Crossed(var/atom/movable/AM) // Transplanting this from /mob/living/carbon/human/Crossed() if(AM == src || AM.is_incorporeal()) // We're not going to run over ourselves or ghosts return + if(src.stat) + return if(isliving(AM)) var/mob/living/L = AM if(L in eaten_mobs)