diff --git a/code/game/objects/structures/mirror.dm b/code/game/objects/structures/mirror.dm
index 6606bd5b1c7..b6162bf8f45 100644
--- a/code/game/objects/structures/mirror.dm
+++ b/code/game/objects/structures/mirror.dm
@@ -55,13 +55,13 @@
/obj/structure/mirror/attackby(obj/item/I, mob/living/user, params)
if(isscrewdriver(I))
- visible_message("[user] begins to unfasten the [src].", "You begin to unfasten the [name].")
+ visible_message("[user] begins to unfasten the [src].", "You begin to unfasten the [name].")
if(do_after(user, 30 * I.toolspeed, target = src))
if(shattered)
- visible_message("[user] drops the broken shards to the floor.", "You drop the broken shards on the floor.")
+ visible_message("[user] drops the broken shards to the floor.", "You drop the broken shards on the floor.")
new /obj/item/weapon/shard(get_turf(user))
else
- visible_message("[user] carefully places [src] on the floor.", "You carefully place [src] on the floor.")
+ visible_message("[user] carefully places [src] on the floor.", "You carefully place [src] on the floor.")
new /obj/item/mounted/mirror(get_turf(user))
qdel(src)
return
diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm
index 0d56c8376c6..8266daa684d 100644
--- a/code/game/objects/structures/watercloset.dm
+++ b/code/game/objects/structures/watercloset.dm
@@ -80,7 +80,7 @@
if("Stash")
stash_goods(I, user)
if("Disconnect")
- user.visible_message("[user] is disconnecting [src].", "You are disconnecting [src]...")
+ user.visible_message("[user] starts disconnecting [src].", "You begin disconnecting [src]...")
if(do_after(user, 40 * I.toolspeed, target = src))
if(!loc || !anchored)
return
@@ -88,7 +88,7 @@
anchored = 0
update_icon()
if("Connect")
- user.visible_message("[user] is connecting [src].", "You are connecting [src]...")
+ user.visible_message("[user] starts connecting [src].", "You begin connecting [src]...")
if(do_after(user, 40 * I.toolspeed, target = src))
if(!loc || anchored)
return
@@ -117,7 +117,7 @@
var/obj/item/weapon/reagent_containers/RG = I
if(RG.is_open_container())
if(RG.reagents.total_volume >= RG.volume)
- to_chat(user, "\The [RG] is full.")
+ to_chat(user, "[RG] is full.")
else
RG.reagents.add_reagent("toiletwater", min(RG.volume - RG.reagents.total_volume, RG.amount_per_transfer_from_this))
to_chat(user, "You fill [RG] from [src]. Gross.")
@@ -168,7 +168,7 @@
to_chat(user, "The cistern is full!")
return
if(!user.drop_item())
- to_chat(user, "\The [I] is stuck to your hand, you cannot put it in the cistern!")
+ to_chat(user, "[I] is stuck to your hand, you cannot put it in the cistern!")
return
I.loc = src
w_items += I.w_class
@@ -538,7 +538,7 @@
var/washing_face = 0
if(selected_area in list("head", "mouth", "eyes"))
washing_face = 1
- user.visible_message("[user] start washing their [washing_face ? "face" : "hands"]...", \
+ user.visible_message("[user] starts washing their [washing_face ? "face" : "hands"]...", \
"You start washing your [washing_face ? "face" : "hands"]...")
busy = 1
@@ -594,7 +594,7 @@
if(wateract)
W.water_act(20,310.15,src)
if("Disconnect")
- user.visible_message("[user] is disconnecting [src].", "You are disconnecting [src]...")
+ user.visible_message("[user] starts disconnecting [src].", "You begin disconnecting [src]...")
if(do_after(user, 40 * O.toolspeed, target = src))
if(!loc || !anchored)
return
@@ -602,7 +602,7 @@
anchored = 0
update_icon()
if("Connect")
- user.visible_message("[user] is connecting [src].", "You are connecting [src]...")
+ user.visible_message("[user] starts connecting [src].", "You begin connecting [src]...")
if(do_after(user, 40 * O.toolspeed, target = src))
if(!loc || anchored)
return