From 87204ff739b3d4bf8524c611eb5149cf0252811b Mon Sep 17 00:00:00 2001 From: DragonTrance Date: Tue, 23 Feb 2021 17:36:44 -0700 Subject: [PATCH] Update species.dm --- code/modules/mob/living/carbon/human/species.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 5f84c597..058dfd86 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1305,11 +1305,11 @@ GLOBAL_LIST_EMPTY(roundstart_races) switch(H.thirst) - if(NUTRITION_LEVEL_HUNGRY to INFINITY) + if(THIRST_LEVEL_THIRSTY to INFINITY) H.clear_alert("thirst") - if(NUTRITION_LEVEL_STARVING to NUTRITION_LEVEL_HUNGRY) + if(THIRST_LEVEL_PARCHED to THIRST_LEVEL_THIRSTY) H.throw_alert("thirst", /obj/screen/alert/thirsty) - if(0 to NUTRITION_LEVEL_STARVING) + if(0 to THIRST_LEVEL_PARCHED) H.throw_alert("thirst", /obj/screen/alert/dehydrated)