Skip to content

Commit

Permalink
maybe a bit less
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Aug 23, 2023
1 parent 2b93749 commit a38fd4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/blood.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//Blood regeneration if there is some space
if(blood_volume < max_blood && nutrition >= 1)
blood_volume += 0.1 // regenerate blood VERY slowly
nutrition -= 1
nutrition -= 0.5
else if(blood_volume > max_blood)
blood_volume -= 0.1 // The reverse in case we've gotten too much blood in our body
if(blood_volume > limit_blood)
Expand Down

0 comments on commit a38fd4c

Please sign in to comment.