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.