Tweaks hunger/thirst slowdown to occur at lower levels. (#7788)

This commit is contained in:
Matt Atlas
2019-12-26 22:22:23 +01:00
committed by Werner
parent 2844fbd0aa
commit 188af6bf08
2 changed files with 43 additions and 2 deletions
@@ -25,12 +25,12 @@
if(species)
tally += species.get_species_tally(src)
if (nutrition < (max_nutrition * 0.4))
if (nutrition < (max_nutrition * 0.2))
tally++
if (nutrition < (max_nutrition * 0.1))
tally++
if (hydration < (max_hydration * 0.4))
if (hydration < (max_hydration * 0.2))
tally++
if (hydration < (max_hydration * 0.1))
tally++