From 28290d4852a1d6af4d4e3b6070d5a7c17637ea18 Mon Sep 17 00:00:00 2001 From: Chinsky Date: Thu, 14 Mar 2013 08:56:13 +0400 Subject: [PATCH] Fixes issue with 0 toxloss giving people worst pain message. --- code/datums/organs/pain.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/organs/pain.dm b/code/datums/organs/pain.dm index 0b9158eff12..3452b0795f9 100644 --- a/code/datums/organs/pain.dm +++ b/code/datums/organs/pain.dm @@ -101,7 +101,7 @@ mob/living/carbon/human/proc/handle_pain() if(11 to 15) toxMessageProb = 2 toxDamageMessage = "Your whole body hurts." - else + if(91 to 10000) toxMessageProb = 5 toxDamageMessage = "Your body aches all over, it's driving you mad."