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()