From 995ae56dfe9cbe17fd0aec6297b0febb5d3d05b8 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Mon, 15 Aug 2016 20:39:55 -0400 Subject: [PATCH] Makes pierce damage correctly heal when bandaged --- code/modules/organs/wound.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/organs/wound.dm b/code/modules/organs/wound.dm index 2c97bf4cfc..4c2538f703 100644 --- a/code/modules/organs/wound.dm +++ b/code/modules/organs/wound.dm @@ -92,7 +92,7 @@ // checks whether the wound has been appropriately treated proc/is_treated() - if(damage_type == BRUISE || damage_type == CUT) + if(damage_type == BRUISE || damage_type == CUT || damage_type == PIERCE) return bandaged else if(damage_type == BURN) return salved @@ -398,4 +398,4 @@ datum/wound/puncture/massive ..(damage_amt) /datum/wound/lost_limb/can_merge(var/datum/wound/other) - return 0 //cannot be merged \ No newline at end of file + return 0 //cannot be merged