From 30194fedd32987d4a335d8f56c14707f78d83f67 Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Wed, 24 Feb 2021 17:45:25 -0500 Subject: [PATCH] Makes Getting Fat....getting fat (#15605) --- code/modules/mob/living/carbon/human/human_organs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_organs.dm b/code/modules/mob/living/carbon/human/human_organs.dm index 6ea6398e9fd..c058a3032d5 100644 --- a/code/modules/mob/living/carbon/human/human_organs.dm +++ b/code/modules/mob/living/carbon/human/human_organs.dm @@ -119,11 +119,11 @@ /mob/living/carbon/human/proc/becomeSlim() to_chat(src, "You feel fit again!") - ADD_TRAIT(src, TRAIT_FAT, OBESITY) + REMOVE_TRAIT(src, TRAIT_FAT, OBESITY) /mob/living/carbon/human/proc/becomeFat() to_chat(src, "You suddenly feel blubbery!") - REMOVE_TRAIT(src, TRAIT_FAT, OBESITY) + ADD_TRAIT(src, TRAIT_FAT, OBESITY) //Handles chem traces /mob/living/carbon/human/proc/handle_trace_chems()