diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm
index 4b62177d603..6ff674556eb 100644
--- a/code/game/machinery/constructable_frame.dm
+++ b/code/game/machinery/constructable_frame.dm
@@ -102,18 +102,18 @@
qdel(src)
return
if(P.tool_behaviour == TOOL_WRENCH)
- to_chat(user, "You start [anchored ? "un" : ""]securing [name]...")
+ to_chat(user, "You start [anchored ? "un" : ""]securing [src]...")
if(P.use_tool(src, user, 40, volume=75))
if(state == 1)
- to_chat(user, "You [anchored ? "un" : ""]secure [name].")
+ to_chat(user, "You [anchored ? "un" : ""]secure [src].")
setAnchored(!anchored)
return
if(2)
if(P.tool_behaviour == TOOL_WRENCH)
- to_chat(user, "You start [anchored ? "un" : ""]securing [name]...")
+ to_chat(user, "You start [anchored ? "un" : ""]securing [src]...")
if(P.use_tool(src, user, 40, volume=75))
- to_chat(user, "You [anchored ? "un" : ""]secure [name].")
+ to_chat(user, "You [anchored ? "un" : ""]secure [src].")
setAnchored(!anchored)
return
@@ -166,9 +166,9 @@
return
if(P.tool_behaviour == TOOL_WRENCH && !circuit.needs_anchored)
- to_chat(user, "You start [anchored ? "un" : ""]securing [name]...")
+ to_chat(user, "You start [anchored ? "un" : ""]securing [src]...")
if(P.use_tool(src, user, 40, volume=75))
- to_chat(user, "You [anchored ? "un" : ""]secure [name].")
+ to_chat(user, "You [anchored ? "un" : ""]secure [src].")
setAnchored(!anchored)
return