From c210145f1d1bb4ceec01164ba522b70f4dfc97c9 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Wed, 28 Jun 2017 17:48:51 -0400 Subject: [PATCH] to_chat --- code/modules/surgery/organs/augments_arms.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/surgery/organs/augments_arms.dm b/code/modules/surgery/organs/augments_arms.dm index a3c1b2bb474..4b62e42cb8a 100644 --- a/code/modules/surgery/organs/augments_arms.dm +++ b/code/modules/surgery/organs/augments_arms.dm @@ -99,13 +99,13 @@ if(arm_item) if(!owner.unEquip(arm_item)) - owner << "Your [arm_item] interferes with [src]!" + to_chat(owner, "Your [arm_item] interferes with [src]!") return else - owner << "You drop [arm_item] to activate [src]!" + to_chat(owner, "You drop [arm_item] to activate [src]!") if(parent_organ == "r_arm" ? !owner.put_in_r_hand(holder) : !owner.put_in_l_hand(holder)) - owner << "Your [src] fails to activate!" + to_chat(owner, "Your [src] fails to activate!") return // Activate the hand that now holds our item.