From 073d8b4fc4d84ec6b2d8eaf730c23fe5cc058fba Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Mon, 27 Feb 2017 19:58:47 -0500 Subject: [PATCH] Prevents halloss showing up as actual wounds on self examine --- code/modules/mob/living/carbon/carbon.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 29422641df..a2b84e0a52 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -166,11 +166,13 @@ var/list/status = list() var/brutedamage = org.brute_dam var/burndamage = org.burn_dam - if(halloss > 0) + /* + if(halloss > 0) //Makes halloss show up as actual wounds on self examine. if(prob(30)) brutedamage += halloss if(prob(30)) burndamage += halloss + */ switch(brutedamage) if(1 to 20) status += "bruised" @@ -460,4 +462,4 @@ /mob/living/carbon/can_feel_pain(var/check_organ) if(isSynthetic()) return 0 - return !(species.flags & NO_PAIN) \ No newline at end of file + return !(species.flags & NO_PAIN)