From 7ac96e228855ea2423fd390d75dc37021246bd74 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 13 Jun 2018 22:33:19 -0500 Subject: [PATCH] [MIRROR] Equalizes thresholds on being fat (#7095) * Equalizes thresholds on being fat (#38383) * Equalizes thresholds on being fat --- code/modules/mob/living/carbon/human/species.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 9d32cab4a8..993967eda6 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1088,7 +1088,7 @@ GLOBAL_LIST_EMPTY(roundstart_races) H.update_inv_w_uniform() H.update_inv_wear_suit() else - if(H.overeatduration > 500) + if(H.overeatduration >= 100) to_chat(H, "You suddenly feel blubbery!") H.add_trait(TRAIT_FAT, OBESITY) H.update_inv_w_uniform()