From 08814f06e566de3f9062a630f5ae7eea5d59d5ea Mon Sep 17 00:00:00 2001 From: kiVts <48099872+kiVts@users.noreply.github.com> Date: Wed, 27 Sep 2023 12:09:23 -0400 Subject: [PATCH] I wasnt the smartest --- code/datums/disease.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/disease.dm b/code/datums/disease.dm index 6a860bfefcae..945c7de652e8 100644 --- a/code/datums/disease.dm +++ b/code/datums/disease.dm @@ -185,8 +185,8 @@ var/list/diseases = typesof(/datum/disease) - /datum/disease protection += 80 // biosuit is VERY helpfull else if(istype(victim.head, /obj/item/clothing/head/helmet/space) && istype(victim.wear_suit, /obj/item/clothing/suit/space)) protection += 60 // not as usefull but still very helpfull - protection = clamp(protection, 5, 100) - if(prob(protection)-5) + protection = clamp(protection, 5, 95) + if(prob(protection)) return FALSE return TRUE