From ad6b0dc9cdfe8bdd320b67b442c032bc7395a290 Mon Sep 17 00:00:00 2001 From: Couls Date: Thu, 16 May 2019 22:46:47 -0400 Subject: [PATCH] Update items.dm --- code/modules/zombie/items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/zombie/items.dm b/code/modules/zombie/items.dm index f710c060b0e..bda4eeba2c6 100644 --- a/code/modules/zombie/items.dm +++ b/code/modules/zombie/items.dm @@ -53,7 +53,7 @@ var/obj/item/organ/internal/zombie_infection/infection infection = target.get_organ_slot("zombie_infection") if(!infection) - if (target.InCritical || (!target.check_death_method && target.health <= HEALTH_THRESHOLD_DEAD)) + if (T.InCritical() || (!T.check_death_method() && T.health <= HEALTH_THRESHOLD_DEAD)) infection = new(target) /obj/item/zombie_hand/proc/check_feast(mob/living/target, mob/living/user)