diff --git a/code/modules/mob/living/carbon/give.dm b/code/modules/mob/living/carbon/give.dm
index 092995f22ea..c0dba9b77e5 100644
--- a/code/modules/mob/living/carbon/give.dm
+++ b/code/modules/mob/living/carbon/give.dm
@@ -29,12 +29,12 @@
to_chat(target, " [usr.name] moved too far away.")
return
if((I.flags & NODROP) || (I.flags & ABSTRACT))
- to_chat(usr, "\the [I.name] stays stuck to your hand when you try to give it!")
- to_chat(target, "\the [I.name] stays stuck to [usr.name]'s hand when you try to take it!")
+ to_chat(usr, "[I] stays stuck to your hand when you try to give it!")
+ to_chat(target, "[I] stays stuck to [usr.name]'s hand when you try to take it!")
return
if(I != get_active_hand())
to_chat(usr, " You need to keep the item in your active hand.")
- to_chat(target, " [usr.name] seem to have given up on giving \the [I.name] to you.")
+ to_chat(target, " [usr.name] seem to have given up on giving [I] to you.")
return
if(target.r_hand != null && target.l_hand != null)
to_chat(target, " Your hands are full.")
@@ -43,9 +43,9 @@
usr.unEquip(I)
target.put_in_hands(I)
I.add_fingerprint(target)
- target.visible_message(" [usr.name] handed \the [I.name] to [target.name].")
+ target.visible_message(" [usr.name] handed [I] to [target.name].")
I.on_give(usr, target)
if("No")
- target.visible_message(" [usr.name] tried to hand [I.name] to [target.name] but [target.name] didn't want it.")
+ target.visible_message(" [usr.name] tried to hand [I] to [target.name] but [target.name] didn't want it.")
else
to_chat(usr, " [target.name]'s hands are full.")