Skip to content

Commit

Permalink
soup is for sick people (which is you)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilmented committed Sep 24, 2024
1 parent 8e98169 commit 9b9fb27
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions code/modules/mob/living/life.dm
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,11 @@
if(heal_reservoir < heal_max)
if(iscarbon(src)) //Humans and stuff with stinky reagents
if(src.reagents.has_reagent(/datum/reagent/water))
heal_reservoir += 0.5
heal_reservoir += 0.75
if(src.reagents.has_reagent(/datum/reagent/consumable/nutriment))
heal_reservoir += 0.75
else
heal_reservoir += 0.25
heal_reservoir += 0.05
else //Everything else
heal_reservoir += (rand(10,50)/100)//0.1 to 0.5
heal_reservoir = min(heal_reservoir,heal_max)

0 comments on commit 9b9fb27

Please sign in to comment.