diff --git a/code/modules/paperwork/clipboard.dm b/code/modules/paperwork/clipboard.dm
index b131dbb4fc8..17442b800ac 100644
--- a/code/modules/paperwork/clipboard.dm
+++ b/code/modules/paperwork/clipboard.dm
@@ -49,7 +49,7 @@
user.drop_item()
W.loc = src
toppaper = W
- user << "\blue You clip the paper onto the clipboard."
+ user << "You clip the paper onto \the [src]."
update_icon()
else if(toppaper)
toppaper.attackby(usr.get_active_hand(), usr)
@@ -97,7 +97,7 @@
usr.drop_item()
W.loc = src
haspen = W
- usr << "\blue You slot the pen into the clipboard."
+ usr << "You slot the pen into \the [src]."
if(href_list["write"])
var/obj/item/P = locate(href_list["write"])
@@ -132,7 +132,7 @@
var/obj/item/P = locate(href_list["top"])
if(P)
toppaper = P
- usr << "You move [P.name] to the top."
+ usr << "You move [P.name] to the top."
//Update everything
attack_self(usr)
diff --git a/code/modules/paperwork/filingcabinet.dm b/code/modules/paperwork/filingcabinet.dm
index fce49e8fc7e..bf4cf66a1b8 100644
--- a/code/modules/paperwork/filingcabinet.dm
+++ b/code/modules/paperwork/filingcabinet.dm
@@ -22,7 +22,7 @@
/obj/structure/filingcabinet/attackby(obj/item/P as obj, mob/user as mob)
if(istype(P, /obj/item/weapon/paper) || istype(P, /obj/item/weapon/folder))
- user << "You put the [P] in the [name]."
+ user << "You put the [P] in \the [src]."
user.drop_item()
P.loc = src
spawn()
@@ -32,13 +32,13 @@
else if(istype(P, /obj/item/weapon/wrench))
playsound(loc, 'Ratchet.ogg', 50, 1)
anchored = !anchored
- user << "You [anchored ? "wrench" : "unwrench"] \the [src]."
+ user << "You [anchored ? "wrench" : "unwrench"] \the [src]."
else
- user << "You can't put a [P] in the [src]!"
+ user << "You can't put a [P] in \the [src]!"
/obj/structure/filingcabinet/attack_hand(mob/user as mob)
if(contents.len <= 0)
- user << "\The [src] is empty."
+ user << "\The [src] is empty."
return
var/dat = "
"
diff --git a/code/modules/paperwork/folders.dm b/code/modules/paperwork/folders.dm
index 4744344f614..8bd85d7131d 100644
--- a/code/modules/paperwork/folders.dm
+++ b/code/modules/paperwork/folders.dm
@@ -32,7 +32,7 @@
if(istype(W, /obj/item/weapon/paper) || istype(W, /obj/item/weapon/photo))
user.drop_item()
W.loc = src
- user << "\blue You put the [W] into the folder."
+ user << "You put the [W] into \the [src]."
update_icon()
else if(istype(W, /obj/item/weapon/pen))
var/n_name = copytext(sanitize(input(usr, "What would you like to label the folder?", "Folder Labelling", null) as text),1,MAX_NAME_LEN)
diff --git a/code/modules/paperwork/handlabeler.dm b/code/modules/paperwork/handlabeler.dm
index 2d9966d0037..c3743487d80 100644
--- a/code/modules/paperwork/handlabeler.dm
+++ b/code/modules/paperwork/handlabeler.dm
@@ -1,5 +1,5 @@
/obj/item/weapon/hand_labeler
- name = "Hand labeler"
+ name = "hand labeler"
icon = 'icons/obj/bureaucracy.dmi'
icon_state = "labeler0"
item_state = "flight"
@@ -14,19 +14,19 @@
return // don't set a label
if(!labels_left)
- user << "\blue No labels left."
+ user << "No labels left."
return
if(!label || !length(label))
- user << "\blue No text set."
+ user << "No text set."
return
if(length(A.name) + length(label) > 64)
- user << "\blue Label too big."
+ user << "Label too big."
return
if(ishuman(A))
- user << "\blue You can't label humans."
+ user << "You can't label humans."
return
if(issilicon(A))
- user << "\blue You can't label cyborgs."
+ user << "You can't label cyborgs."
return
for(var/mob/M in viewers())
@@ -38,13 +38,13 @@
mode = !mode
icon_state = "labeler[mode]"
if(mode)
- usr << "\blue You turn on the hand labeler."
+ usr << "You turn on \the [src]."
//Now let them chose the text.
var/str = copytext(reject_bad_text(input(usr,"Label text?","Set label","")),1,MAX_NAME_LEN)
if(!str || !length(str))
- usr << "\red Invalid text."
+ usr << "Invalid text."
return
label = str
- usr << "\blue You set the text to '[str]'."
+ usr << "You set the text to '[str]'."
else
- usr << "\blue You turn off the hand labeler."
\ No newline at end of file
+ usr << "You turn off \the [src]."
\ No newline at end of file
diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm
index 676272decb4..d8fd2d2d302 100644
--- a/code/modules/paperwork/paper.dm
+++ b/code/modules/paperwork/paper.dm
@@ -64,7 +64,7 @@
set src in usr
if ((CLUMSY in usr.mutations) && prob(50))
- usr << "\red You cut yourself on the paper."
+ usr << "You cut yourself on the paper."
return
var/n_name = input(usr, "What would you like to label the paper?", "Paper Labelling", null) as text
n_name = copytext(n_name, 1, 32)
@@ -285,7 +285,7 @@
overlays += "paper_stamped_denied"
if(/obj/item/weapon/stamp/clown)
if (!clown)
- usr << "\red You are totally unable to use the stamp. HONK!"
+ usr << "You are totally unable to use the stamp. HONK!"
return
else
overlays += "paper_stamped_clown"
@@ -295,7 +295,7 @@
stamped = new
stamped += P.type
- user << "\blue You stamp the paper with your rubber stamp."
+ user << "You stamp the paper with your rubber stamp."
add_fingerprint(user)
return
\ No newline at end of file
diff --git a/code/modules/paperwork/paperbin.dm b/code/modules/paperwork/paperbin.dm
index d1066322932..aa66d942815 100644
--- a/code/modules/paperwork/paperbin.dm
+++ b/code/modules/paperwork/paperbin.dm
@@ -47,12 +47,12 @@
P.loc = user.loc
if(ishuman(user))
user.put_in_hands(P)
- user << "You take a paper out of the bin."
+ user << "You take a paper out of the bin."
else
P.loc = get_turf_loc(src)
- user << "You take a paper out of the bin."
+ user << "You take a paper out of the bin."
else
- user << "The paper bin is empty!"
+ user << "The paper bin is empty!"
add_fingerprint(user)
return
@@ -63,7 +63,7 @@
user.drop_item()
i.loc = src
- usr << "You put the paper on the top of the paper bin."
+ usr << "You put the paper on the top of the paper bin."
papers.Add(i)
amount++
@@ -71,9 +71,9 @@
set src in oview(1)
if(amount)
- usr << "There " + (amount > 1 ? "are [amount] papers" : "is one paper") + " in the bin."
+ usr << "There " + (amount > 1 ? "are [amount] papers" : "is one paper") + " in the bin."
else
- usr << "There are no papers in the bin."
+ usr << "There are no papers in the bin."
return
update_icon()
diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm
index d23667e10f8..4dc5dbae872 100644
--- a/code/modules/paperwork/photocopier.dm
+++ b/code/modules/paperwork/photocopier.dm
@@ -1,7 +1,7 @@
//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33
/obj/machinery/photocopier
- name = "Photocopier"
+ name = "photocopier"
icon = 'icons/obj/library.dmi'
icon_state = "bigscanner"
anchored = 1
@@ -70,7 +70,7 @@
if(!usr.get_active_hand())
copy.loc = usr.loc
usr.put_in_hands(copy)
- usr << "You take the paper out of the photocopier."
+ usr << "You take the paper out of the photocopier."
copy = null
updateUsrDialog()
else if(href_list["min"])
@@ -88,24 +88,24 @@
user.drop_item()
copy = O
O.loc = src
- user << "You insert the paper into the photocopier."
+ user << "You insert the paper into \the [src]."
flick("bigscanner1", src)
updateUsrDialog()
else
- user << "There is already paper in the photocopier."
+ user << "There is already paper in \the [src]."
else if(istype(O, /obj/item/device/toner))
if(toner == 0)
user.drop_item()
del(O)
toner = 30
- user << "You insert the toner cartridge into the photocopier."
+ user << "You insert the toner cartridge into \the [src]."
updateUsrDialog()
else
- user << "This cartridge is not yet ready for replacement! Use up the rest of the toner."
+ user << "This cartridge is not yet ready for replacement! Use up the rest of the toner."
else if(istype(O, /obj/item/weapon/wrench))
playsound(loc, 'Ratchet.ogg', 50, 1)
anchored = !anchored
- user << "You [anchored ? "wrench" : "unwrench"] \the [src]."
+ user << "You [anchored ? "wrench" : "unwrench"] \the [src]."
return
ex_act(severity)
diff --git a/code/modules/paperwork/stamps.dm b/code/modules/paperwork/stamps.dm
index 8a5161a53e0..4cd63355be1 100644
--- a/code/modules/paperwork/stamps.dm
+++ b/code/modules/paperwork/stamps.dm
@@ -1,6 +1,6 @@
/obj/item/weapon/stamp
- desc = "A rubber stamp for stamping important documents."
name = "rubber stamp"
+ desc = "A rubber stamp for stamping important documents."
icon = 'icons/obj/bureaucracy.dmi'
icon_state = "stamp-qm"
item_state = "stamp"