Fixes mantraps eating when dead (#17327)

Fixed mantraps voring people who step on them when they're dead.
This commit is contained in:
SatinIsle
2025-03-13 12:11:16 +01:00
committed by GitHub
parent b9f0d9e864
commit 5035f5a14e
@@ -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)