Limits BLood Volume to 560

This commit is contained in:
Fox-McCloud
2017-07-18 00:10:43 -04:00
parent b160582f09
commit 5bba6c70f7
4 changed files with 4 additions and 4 deletions
@@ -468,7 +468,7 @@
// Other return values will cause weird badness
/datum/species/proc/handle_reagents(mob/living/carbon/human/H, datum/reagent/R)
if(R.id == exotic_blood)
H.blood_volume = min(H.blood_volume + round(R.volume, 0.1), BLOOD_VOLUME_MAXIMUM)
H.blood_volume = min(H.blood_volume + round(R.volume, 0.1), BLOOD_VOLUME_NORMAL)
H.reagents.del_reagent(R.id)
return 0
return 1