From a93a1dfe36a655a2f516427d6205fbbffc34c7ce Mon Sep 17 00:00:00 2001 From: Firecage Date: Wed, 21 Jan 2015 19:57:48 +0200 Subject: [PATCH] usr -> user in monkey dexterity. --- code/game/objects/items/devices/violin.dm | 2 +- code/game/objects/structures/musician.dm | 2 +- code/game/objects/structures/tank_dispenser.dm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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]

"