From 082032b4d1ef2e57dfbe56981144416fc96397a9 Mon Sep 17 00:00:00 2001 From: Kyep Date: Thu, 28 Mar 2019 22:22:49 -0700 Subject: [PATCH] updated based on fox suggestion --- .../simple_animal/hostile/terror_spiders/terror_spiders.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm b/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm index edcfbd33906..f931a8c45f5 100644 --- a/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm +++ b/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm @@ -214,7 +214,7 @@ var/global/list/ts_spiderling_list = list() var/mob/living/carbon/human/H = G if(!(H.dna.species.reagent_tag & PROCESS_ORG) || (!H.dna.species.tox_mod)) can_poison = 0 - if(H.stat != DEAD && H.health < HEALTH_THRESHOLD_DEAD) // Intentionally not HEALTH_THRESHOLD_CRIT, as that is softcrit + if(!H.check_death_method() && H.health <= HEALTH_THRESHOLD_DEAD) // Intentionally not HEALTH_THRESHOLD_CRIT, as that is softcrit H.death() spider_specialattack(G,can_poison) else