diff --git a/code/game/objects/items/mountable_frames/apc_frame.dm b/code/game/objects/items/mountable_frames/apc_frame.dm
index 11542cdd94c..fbdab5584f1 100644
--- a/code/game/objects/items/mountable_frames/apc_frame.dm
+++ b/code/game/objects/items/mountable_frames/apc_frame.dm
@@ -10,11 +10,11 @@
var/turf/turf_loc = get_turf(user)
var/area/area_loc = turf_loc.loc
if(area_loc.get_apc())
- to_chat(user, "This area already has an APC.")
+ to_chat(user, "This area already has an APC.")
return //only one APC per area
for(var/obj/machinery/power/terminal/T in turf_loc)
if(T.master)
- to_chat(user, "There is another network terminal here.")
+ to_chat(user, "There is another network terminal here.")
return
else
var/obj/item/stack/cable_coil/C = new /obj/item/stack/cable_coil(turf_loc)
diff --git a/code/game/objects/items/mountable_frames/frames.dm b/code/game/objects/items/mountable_frames/frames.dm
index 0bc5a8f9be6..2bcbea8cbee 100644
--- a/code/game/objects/items/mountable_frames/frames.dm
+++ b/code/game/objects/items/mountable_frames/frames.dm
@@ -20,11 +20,11 @@
var/turf/turf_loc = get_turf(user)
if(src.mount_reqs.Find("simfloor") && !istype(turf_loc, /turf/simulated/floor))
- to_chat(user, "[src] cannot be placed on this spot.")
+ to_chat(user, "[src] cannot be placed on this spot.")
return
if(src.mount_reqs.Find("nospace"))
var/area/my_area = turf_loc.loc
if(!istype(my_area) || (my_area.requires_power == 0 || istype(my_area,/area/space)))
- to_chat(user, "[src] cannot be placed in this area.")
+ to_chat(user, "[src] cannot be placed in this area.")
return
return 1
diff --git a/code/game/objects/items/mountable_frames/mountables.dm b/code/game/objects/items/mountable_frames/mountables.dm
index 1b720712fa9..7120f8c880d 100644
--- a/code/game/objects/items/mountable_frames/mountables.dm
+++ b/code/game/objects/items/mountable_frames/mountables.dm
@@ -21,11 +21,11 @@
if(proximity_flag != 1) //if we aren't next to the wall
return
if(!( get_dir(on_wall,user) in cardinal))
- to_chat(user, "You need to be standing next to a wall to place \the [src].")
+ to_chat(user, "You need to be standing next to a wall to place \the [src].")
return
if(gotwallitem(get_turf(user), get_dir(on_wall,user)))
- to_chat(user, "There's already an item on this wall!")
+ to_chat(user, "There's already an item on this wall!")
return
return 1