From 9984d72ff6c977dc7a4b94352b2e11f9b338efb6 Mon Sep 17 00:00:00 2001 From: PsiOmegaDelta Date: Sun, 3 Jan 2016 17:31:49 +0100 Subject: [PATCH] It should now be possible to give species with blood IV, rather than species without blood. --- code/modules/organs/blood.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/organs/blood.dm b/code/modules/organs/blood.dm index ebc490601d3..2edf11ae521 100644 --- a/code/modules/organs/blood.dm +++ b/code/modules/organs/blood.dm @@ -216,7 +216,7 @@ var/const/BLOOD_VOLUME_SURVIVE = 122 //Transfers blood from reagents to vessel, respecting blood types compatability. /mob/living/carbon/human/inject_blood(var/datum/reagent/blood/injected, var/amount) - if(species.flags & NO_BLOOD) + if(!(species.flags & NO_BLOOD)) reagents.add_reagent("blood", amount, injected.data) reagents.update_total() return