From 22c627901b1abfd52e52dfd8e4e71f5a4067ef67 Mon Sep 17 00:00:00 2001 From: cib Date: Mon, 6 Aug 2012 13:23:32 -0700 Subject: [PATCH] Fixed a very silly mistake with wound healing. --- code/modules/mob/organ/organ.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/organ/organ.dm b/code/modules/mob/organ/organ.dm index 001e7ccf6d2..138d034718c 100644 --- a/code/modules/mob/organ/organ.dm +++ b/code/modules/mob/organ/organ.dm @@ -366,7 +366,7 @@ // heal brute damage if(W.damage_type == CUT || W.damage_type == BRUISE) - burn = W.heal_damage(brute) + brute = W.heal_damage(brute) else if(W.damage_type == BURN) burn = W.heal_damage(burn)