From 21661e7a753d7a9822ff1c1a732242fec566748c Mon Sep 17 00:00:00 2001 From: CIB Date: Fri, 6 Jul 2012 19:52:24 +0300 Subject: [PATCH] Bugfix: False code in blood generation. --- 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 1821b5af28a..a0a0b8da8a9 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -964,7 +964,7 @@ if(blood_volume < 560 && blood_volume) var/datum/reagent/blood/B = locate() in vessel //Grab some blood if(B) // Make sure there's some blood at all - if(!B.data["donor"] == src) //If it's not theirs, then we look for theirs + if(B.data["donor"] != src) //If it's not theirs, then we look for theirs for(var/datum/reagent/blood/D in vessel) if(D.data["donor"] == src) B = D