mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 06:54:18 +01:00
* Added * arrow requested changes
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -128,7 +128,7 @@
|
||||
return
|
||||
reagents.trans_to_mob(target, min(reagents.total_volume,bitesize), CHEM_INGEST)
|
||||
else
|
||||
if(!user.can_force_feed(target, src))
|
||||
if(!target.can_force_feed(user, src))
|
||||
return
|
||||
if(is_full)
|
||||
to_chat(user,span("warning","\The [target] can't stomach any more food!"))
|
||||
|
||||
Reference in New Issue
Block a user