From cdeb68825d9b0fc139473cc83e3b5e5348f2ad34 Mon Sep 17 00:00:00 2001 From: Kyep Date: Mon, 1 Apr 2019 03:10:21 -0700 Subject: [PATCH] REVERT: terror spiders no longer ignore newcrit in this PR --- .../simple_animal/hostile/terror_spiders/terror_spiders.dm | 2 -- 1 file changed, 2 deletions(-) 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 f931a8c45f5..39c03feb928 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,8 +214,6 @@ 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.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 G.attack_animal(src)