From 063394c7bf84253ba770c987e8dfffdae4922429 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Sat, 14 Dec 2013 23:08:31 +0100 Subject: [PATCH] Re-Added burn damage healing to RAD_ABSORB --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index dad8c2af584..72fdff90290 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -262,7 +262,7 @@ var/rads = radiation/25 radiation -= rads nutrition += rads - adjustBruteLoss(-(rads)) + heal_overall_damage(rads,rads) adjustOxyLoss(-(rads)) adjustToxLoss(-(rads)) updatehealth()