no more pausing metabolization, go build a stasis bed you lazy.

This commit is contained in:
SandPoot
2025-04-18 17:37:43 -03:00
parent 4ef4e2c7cc
commit f0fb1ad3d7
2 changed files with 2 additions and 15 deletions

View File

@@ -1641,15 +1641,7 @@ GLOBAL_LIST_EMPTY(roundstart_race_names)
H.Jitter(5)
hunger_rate = 3 * HUNGER_FACTOR
hunger_rate *= H.physiology.hunger_mod
// SANDSTORM EDIT
if (H.client)
H.adjust_nutrition(-hunger_rate)
else
// Do not allow SSD players to get too hungry.
if (H.nutrition >= NUTRITION_LEVEL_FED)
H.adjust_nutrition(-hunger_rate)
// End of sandstorm edit
H.adjust_nutrition(-hunger_rate)
if (H.nutrition > NUTRITION_LEVEL_FULL)

View File

@@ -3,12 +3,7 @@
return
//Put more things here if you plan on adding more things. I know this proc is a bit empty at the moment
if (H.client)
H.adjust_thirst(-THIRST_FACTOR)
else
// Do not allow SSD players to too thirsty.
if (H.thirst >= THIRST_LEVEL_QUENCHED)
H.adjust_thirst(-THIRST_FACTOR)
H.adjust_thirst(-THIRST_FACTOR)
/* switch(get_thirst(src))
if(THIRST_LEVEL_THIRSTY to INFINITY)