From 1a70b6fe1cb5202d63ffcd024b024cc5e88cbd39 Mon Sep 17 00:00:00 2001 From: Qustinnus Date: Wed, 19 Jul 2017 23:02:35 +0200 Subject: [PATCH] makes up for the more frequent checks --- code/modules/mob/living/carbon/human/species.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index ed9697e9410..988dd06df89 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -926,9 +926,9 @@ /datum/species/proc/handle_disgust(mob/living/carbon/human/H, var/metabolism_rate) if(H.disgust) - var/pukeprob = 5 + 0.1 * H.disgust + var/pukeprob = 5 + 0.05 * H.disgust if(H.disgust >= DISGUST_LEVEL_GROSS) - if(prob(25)) + if(prob(10)) H.stuttering += 1 H.confused += 2 if(prob(10) && !H.stat) @@ -941,10 +941,10 @@ H.vomit(10, 0, 1, 0, 1, 0) H.Dizzy(5) if(H.disgust >= DISGUST_LEVEL_DISGUSTED) - if(prob(50)) + if(prob(25)) H.blur_eyes(3) //We need to add more shit down here - H.adjust_disgust(-1 * metabolism_rate) + H.adjust_disgust(-0.5 * metabolism_rate) switch(H.disgust) if(0 to DISGUST_LEVEL_GROSS)