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
@@ -214,7 +214,7 @@
if((!data || !(data["blood_type"] in get_safe_blood(C.dna.b_type))))
C.reagents.add_reagent("toxin", volume * 0.5)
else
C.blood_volume = min(C.blood_volume + round(volume, 0.1), BLOOD_VOLUME_MAXIMUM)
C.blood_volume = min(C.blood_volume + round(volume, 0.1), BLOOD_VOLUME_NORMAL)
/datum/reagent/blood/on_new(list/data)
if(istype(data))