From b72d304f1c124bfb7759dd2b97b4cd77124f17ee Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 21 Aug 2017 22:24:29 -0500 Subject: [PATCH] [MIRROR] Fixes the amounts for examining disgusted people (#2253) * Fixes the amounts for examining disgusted people * Update examine.dm * Delete examine.dm.rej --- code/modules/mob/living/carbon/human/examine.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 31867cd608..0b98784b75 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -224,12 +224,13 @@ msg += "[t_He] [t_is] plump and delicious looking - Like a fat little piggy. A tasty piggy.\n" else msg += "[t_He] [t_is] quite chubby.\n" + switch(disgust) - if(0 to DISGUST_LEVEL_GROSS) - msg += "[t_He] looks a bit grossed out.\n" if(DISGUST_LEVEL_GROSS to DISGUST_LEVEL_VERYGROSS) - msg += "[t_He] looks really grossed out.\n" + msg += "[t_He] looks a bit grossed out.\n" if(DISGUST_LEVEL_VERYGROSS to DISGUST_LEVEL_DISGUSTED) + msg += "[t_He] looks really grossed out.\n" + if(DISGUST_LEVEL_DISGUSTED to INFINITY) msg += "[t_He] looks disgusted.\n" if(blood_volume < BLOOD_VOLUME_SAFE)