mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-09 16:07:40 +00:00
16 lines
552 B
Plaintext
16 lines
552 B
Plaintext
/datum/species/proc/handle_thirst(mob/living/carbon/human/H)
|
|
if(HAS_TRAIT(H, TRAIT_NOTHIRST))
|
|
return
|
|
|
|
//Put more things here if you plan on adding more things. I know this proc is a bit empty at the moment
|
|
H.adjust_thirst(-THIRST_FACTOR)
|
|
|
|
/* switch(get_thirst(src))
|
|
if(THIRST_LEVEL_THIRSTY to INFINITY)
|
|
H.clear_alert("thirst")
|
|
if(THIRST_LEVEL_PARCHED to THIRST_LEVEL_THIRSTY)
|
|
H.throw_alert("thirst", /atom/movable/screen/alert/thirsty)
|
|
if(0 to THIRST_LEVEL_PARCHED)
|
|
H.throw_alert("thirst", /atom/movable/screen/alert/dehydrated)
|
|
*/
|