From 17440ff756db9a08edd73c22cdde9ff95f412399 Mon Sep 17 00:00:00 2001 From: GauHelldragon Date: Wed, 28 Nov 2012 12:37:27 -0800 Subject: [PATCH] Fixed blood regen bug Nutriment is stored in reagents. Vessel is only for blood. --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index c4a5ab3fa35..1ef8ed18e28 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -140,7 +140,7 @@ if(D.data["donor"] == src) B = D break - var/datum/reagent/nutriment/F = locate() in vessel.reagent_list + var/datum/reagent/nutriment/F = locate() in reagents.reagent_list if(F != null) if(F.volume >= 1) // nutriment speeds it up quite a bit