Added NO_BLOOD checks to drips, syringes.

Conflicts:
	code/modules/organs/blood.dm
This commit is contained in:
Zuhayr
2014-01-05 14:13:58 +10:30
committed by ZomgPonies
parent 2aaa601aac
commit a8c8bb7fa6
3 changed files with 10 additions and 2 deletions
@@ -88,6 +88,12 @@
user << "\red You are unable to locate any blood."
return
if(istype(T,/mob/living/carbon/human)) //TODO: make blood sampling take from the reagents datum instead of vessel.
var/mob/living/carbon/human/H = T
if(H.species && H.species.flags & NO_BLOOD)
user << "\red You are unable to locate any blood."
return
var/datum/reagent/B = T.take_blood(src,amount)
if (B)