mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-14 00:23:29 +01:00
Added NO_BLOOD checks to drips, syringes.
Conflicts: code/modules/organs/blood.dm
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user