Fixes restore_blood()

This is used by changeling abilities to refill blood. It wasn't doing
so.
This commit is contained in:
Krausus
2015-05-19 14:44:58 -04:00
parent cae8bd68bf
commit f2cf32681e
@@ -245,7 +245,7 @@
This function restores the subjects blood to max.
*/
/mob/living/carbon/human/proc/restore_blood()
if(!species.flags & NO_BLOOD)
if(!(species.flags & NO_BLOOD))
var/blood_volume = vessel.get_reagent_amount("blood")
vessel.add_reagent("blood",560.0-blood_volume)