mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 21:12:24 +01:00
Tweaks hunger/thirst slowdown to occur at lower levels. (#7788)
This commit is contained in:
@@ -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++
|
||||
|
||||
Reference in New Issue
Block a user