[MIRROR] Fixes the amounts for examining disgusted people (#2253)

* Fixes the amounts for examining disgusted people

* Update examine.dm

* Delete examine.dm.rej
This commit is contained in:
CitadelStationBot
2017-08-21 22:24:29 -05:00
committed by kevinz000
parent 7da5e2862d
commit b72d304f1c
@@ -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)