Fixes #5392 + Blood Nutrition Tweaks (#5393)

* Added

* arrow requested changes
This commit is contained in:
BurgerLUA
2018-10-09 19:59:56 +02:00
committed by Werner
parent 61b3d6cf3d
commit 8f07c52778
3 changed files with 42 additions and 4 deletions
+3 -3
View File
@@ -119,9 +119,9 @@ var/const/BLOOD_VOLUME_SURVIVE = 122
death()
// Without enough blood you slowly go hungry and thirsty
if(blood_volume < BLOOD_VOLUME_SAFE)
adjustNutritionLoss(get_nutrition_mul(1,20))
adjustHydrationLoss(get_hydration_mul(1,10))
if(blood_volume <= BLOOD_VOLUME_SAFE)
adjustNutritionLoss(get_nutrition_mul(1,5))
adjustHydrationLoss(get_hydration_mul(1,13))
//Bleeding out
var/blood_max = 0