From fe5606301186493e91ba2ea686f9eebb89d74579 Mon Sep 17 00:00:00 2001 From: swindly Date: Tue, 25 Apr 2017 21:05:48 -0400 Subject: [PATCH] icon fix --- code/modules/surgery/organ_manipulation.dm | 1 + code/modules/surgery/prosthetic_replacement.dm | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/surgery/organ_manipulation.dm b/code/modules/surgery/organ_manipulation.dm index e99fd373d0a..6e3c224924d 100644 --- a/code/modules/surgery/organ_manipulation.dm +++ b/code/modules/surgery/organ_manipulation.dm @@ -121,6 +121,7 @@ I = tool.contents[1] tool.icon_state = "evidenceobj" tool.desc = "A container for holding body parts." + tool.cut_overlays() tool = I else I = tool diff --git a/code/modules/surgery/prosthetic_replacement.dm b/code/modules/surgery/prosthetic_replacement.dm index ec0ecece752..53520679c2b 100644 --- a/code/modules/surgery/prosthetic_replacement.dm +++ b/code/modules/surgery/prosthetic_replacement.dm @@ -59,9 +59,10 @@ /datum/surgery_step/add_prosthetic/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) if(istype(tool, /obj/item/weapon/organ_storage)) - tool = tool.contents[1] tool.icon_state = "evidenceobj" tool.desc = "A container for holding body parts." + tool.cut_overlays() + tool = tool.contents[1] if(istype(tool, /obj/item/bodypart)) var/obj/item/bodypart/L = tool user.drop_item()