diff --git a/code/game/objects/items/crayons.dm b/code/game/objects/items/crayons.dm
index 2ad51ca887..f1a99a6090 100644
--- a/code/game/objects/items/crayons.dm
+++ b/code/game/objects/items/crayons.dm
@@ -46,11 +46,11 @@
if(colour != "#FFFFFF" && shadeColour != "#000000")
colour = "#FFFFFF"
shadeColour = "#000000"
- to_chat(usr,"You will now draw in white and black with this crayon.")
+ to_chat(user, "You will now draw in white and black with this crayon.")
else
colour = "#000000"
shadeColour = "#FFFFFF"
- to_chat(usr,"You will now draw in black and white with this crayon.")
+ to_chat(user, "You will now draw in black and white with this crayon.")
return
/obj/item/weapon/pen/crayon/rainbow
@@ -72,22 +72,22 @@
switch(drawtype)
if("letter")
drawtype = input("Choose the letter.", "Crayon scribbles") in list("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z")
- to_chat(usr,"You start drawing a letter on the [target.name].")
+ to_chat(user, "You start drawing a letter on the [target.name].")
if("graffiti")
- to_chat(usr,"You start drawing graffiti on the [target.name].")
+ to_chat(user, "You start drawing graffiti on the [target.name].")
if("rune")
- to_chat(usr,"You start drawing a rune on the [target.name].")
+ to_chat(user, "You start drawing a rune on the [target.name].")
if("arrow")
drawtype = input("Choose the arrow.", "Crayon scribbles") in list("left", "right", "up", "down")
- to_chat(usr,"You start drawing an arrow on the [target.name].")
+ to_chat(user, "You start drawing an arrow on the [target.name].")
if(instant || do_after(user, 50))
new /obj/effect/decal/cleanable/crayon(target,colour,shadeColour,drawtype)
- to_chat(usr,"You finish drawing.")
+ to_chat(user, "You finish drawing.")
target.add_fingerprint(user) // Adds their fingerprints to the floor the crayon is drawn on.
if(uses)
uses--
if(!uses)
- to_chat(usr,"You used up your crayon!")
+ to_chat(user, "You used up your crayon!")
qdel(src)
return
@@ -158,11 +158,11 @@
if(colour != "#FFFFFF" && shadeColour != "#000000")
colour = "#FFFFFF"
shadeColour = "#000000"
- to_chat(usr,"You will now draw in white and black with this marker.")
+ to_chat(user, "You will now draw in white and black with this marker.")
else
colour = "#000000"
shadeColour = "#FFFFFF"
- to_chat(usr,"You will now draw in black and white with this marker.")
+ to_chat(user, "You will now draw in black and white with this marker.")
return
/obj/item/weapon/pen/crayon/marker/rainbow
@@ -179,7 +179,7 @@
/obj/item/weapon/pen/crayon/marker/attack(mob/M as mob, mob/user as mob)
if(M == user)
- to_chat(usr,"You take a bite of the marker and swallow it.")
+ to_chat(user, "You take a bite of the marker and swallow it.")
user.nutrition += 1
user.reagents.add_reagent("marker_ink",6)
if(uses)
diff --git a/code/game/objects/items/weapons/storage/fancy.dm b/code/game/objects/items/weapons/storage/fancy.dm
index 762720e390..c1de372dc1 100644
--- a/code/game/objects/items/weapons/storage/fancy.dm
+++ b/code/game/objects/items/weapons/storage/fancy.dm
@@ -107,10 +107,10 @@
if(istype(W,/obj/item/weapon/pen/crayon))
switch(W:colourName)
if("mime")
- to_chat(usr,"This crayon is too sad to be contained in this box.")
+ to_chat(user, "This crayon is too sad to be contained in this box.")
return
if("rainbow")
- to_chat(usr,"This crayon is too powerful to be contained in this box.")
+ to_chat(user, "This crayon is too powerful to be contained in this box.")
return
..()
@@ -149,10 +149,10 @@
if(istype(W,/obj/item/weapon/pen/crayon/marker))
switch(W:colourName)
if("mime")
- to_chat(usr,"This marker is too depressing to be contained in this box.")
+ to_chat(user, "This marker is too depressing to be contained in this box.")
return
if("rainbow")
- to_chat(usr,"This marker is too childish to be contained in this box.")
+ to_chat(user, "This marker is too childish to be contained in this box.")
return
..()