From 1466032728e69d5560d632a563af022e20655b9f Mon Sep 17 00:00:00 2001 From: Archie Date: Fri, 15 Jan 2021 04:00:47 -0300 Subject: [PATCH] Examine code mini fix --- code/modules/surgery/tools.dm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/code/modules/surgery/tools.dm b/code/modules/surgery/tools.dm index 2fb8c70f..9f670ecb 100644 --- a/code/modules/surgery/tools.dm +++ b/code/modules/surgery/tools.dm @@ -29,7 +29,8 @@ icon_state = "retractor_a" /obj/item/retractor/advanced/examine(mob/living/user) - to_chat(user, " It resembles a [tool_behaviour == TOOL_RETRACTOR ? "retractor" : "hemostat"]. " /obj/item/retractor/augment name = "retractor" @@ -131,7 +132,8 @@ icon_state = "surgicaldrill_a" /obj/item/surgicaldrill/advanced/examine(mob/living/user) - to_chat(user, "") + . = ..() + . += "" /obj/item/surgicaldrill/augment name = "surgical drill" @@ -203,7 +205,8 @@ icon_state = "scalpel_a" /obj/item/scalpel/advanced/examine(mob/living/user) - to_chat(user, "") + . = ..() + . += "" /obj/item/scalpel/augment name = "scalpel"