From 4e3eff4f73639ca3fb09d06af7a3023e3f57b41e Mon Sep 17 00:00:00 2001 From: Dax Dupont Date: Wed, 13 Jun 2018 09:56:24 +0200 Subject: [PATCH] Equalizes thresholds on being fat (#38383) --- 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 5e436023f21..a1cc04d4ea8 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -951,7 +951,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()