It should now be possible to give species with blood IV, rather than species without blood.

This commit is contained in:
PsiOmegaDelta
2016-01-03 17:31:49 +01:00
parent c1762c6b22
commit 9984d72ff6
+1 -1
View File
@@ -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