From c6054e06ecebcac8698a7c8c0e2124232fabae55 Mon Sep 17 00:00:00 2001 From: cib Date: Tue, 7 Aug 2012 00:18:53 -0700 Subject: [PATCH] Fixed a derp with damage types. --- code/modules/mob/organ/organ.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/organ/organ.dm b/code/modules/mob/organ/organ.dm index e67eb4b6568..33516596e35 100644 --- a/code/modules/mob/organ/organ.dm +++ b/code/modules/mob/organ/organ.dm @@ -51,8 +51,8 @@ // amount of damage the current wound type requires(less means we need to apply the next healing stage) var/min_damage = 0 - // one of CUTE, BRUISE, BURN - var/damage_type = BRUTE + // one of CUT, BRUISE, BURN + var/damage_type = CUT // whether this wound needs a bandage/salve to heal at all var/needs_treatment = 0