From e21b65ec8517d1af8ca3dc1b2b96313a7c9d936f Mon Sep 17 00:00:00 2001 From: Mechoid Date: Sun, 15 Oct 2017 11:13:46 -0700 Subject: [PATCH] Nails the Parentheses back on. --- code/modules/surgery/limb_reattach.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/surgery/limb_reattach.dm b/code/modules/surgery/limb_reattach.dm index 7f1dbce282..99fa33d1cb 100644 --- a/code/modules/surgery/limb_reattach.dm +++ b/code/modules/surgery/limb_reattach.dm @@ -30,10 +30,10 @@ to_chat(user, "Something is in the way! You can't attach [E] here!") return 0 if(!P) - to_chat(user, "There's nothing to attach [E] to!" + to_chat(user, "There's nothing to attach [E] to!") return 0 else if((P.robotic >= ORGAN_ROBOT) && (E.robotic < ORGAN_ROBOT)) - to_chat(user, "Attaching [E] to [P] wouldn't work well." + to_chat(user, "Attaching [E] to [P] wouldn't work well.") return 0 else if(istype(E, /obj/item/organ/external/head) && E.robotic >= ORGAN_ROBOT && P.robotic < ORGAN_ROBOT) to_chat(user, "Attaching [E] to [P] might break [E].")