From 0fdcfc8660462bda617646fa65f0b8fb8c908e8a Mon Sep 17 00:00:00 2001 From: Artur Date: Wed, 12 Feb 2020 14:02:09 +0200 Subject: [PATCH] Works now. --- code/modules/reagents/chemistry/reagents/other_reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index 06afcf256e..12a126a5a4 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -186,8 +186,8 @@ return /datum/reagent/blood/reaction_mob(mob/living/L, method=TOUCH, reac_volume) - if(isvamp(C)) - var/datum/antagonist/bloodsucker/bloodsuckerdatum = mind.has_antag_datum(ANTAG_DATUM_BLOODSUCKER) + if(isvamp(L)) + var/datum/antagonist/bloodsucker/bloodsuckerdatum = L.mind.has_antag_datum(ANTAG_DATUM_BLOODSUCKER) bloodsuckerdatum.handle_eat_human_food(reac_volume * 2) return