diff --git a/code/game/objects/items/devices/violin.dm b/code/game/objects/items/devices/violin.dm
index 12f65b0ed37..09fd77c6d75 100644
--- a/code/game/objects/items/devices/violin.dm
+++ b/code/game/objects/items/devices/violin.dm
@@ -20,7 +20,7 @@
/obj/item/device/violin/attack_self(mob/user as mob)
if(!user.IsAdvancedToolUser())
- usr << "You don't have the dexterity to do this!"
+ user << "You don't have the dexterity to do this!"
return 1
interact(user)
diff --git a/code/game/objects/structures/musician.dm b/code/game/objects/structures/musician.dm
index 781ad56b612..6510eaf31a5 100644
--- a/code/game/objects/structures/musician.dm
+++ b/code/game/objects/structures/musician.dm
@@ -324,7 +324,7 @@
/obj/structure/piano/attack_hand(mob/user as mob)
if(!user.IsAdvancedToolUser())
- usr << "You don't have the dexterity to do this!"
+ user << "You don't have the dexterity to do this!"
return 1
interact(user)
diff --git a/code/game/objects/structures/tank_dispenser.dm b/code/game/objects/structures/tank_dispenser.dm
index 38094c6514b..0dcf0f5f451 100644
--- a/code/game/objects/structures/tank_dispenser.dm
+++ b/code/game/objects/structures/tank_dispenser.dm
@@ -36,7 +36,7 @@
/obj/structure/dispenser/attack_hand(mob/user as mob)
if(!user.IsAdvancedToolUser())
- usr << "You don't have the dexterity to do this!"
+ user << "You don't have the dexterity to do this!"
return 1
user.set_machine(src)
var/dat = "[src]
"