diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm
index c9e7c340687..5c4ea5fdd8e 100644
--- a/code/modules/power/apc.dm
+++ b/code/modules/power/apc.dm
@@ -157,7 +157,7 @@
cell.charge = 0
/obj/item/apc_electronics
- name = "power control module"
+ name = "APC electronics"
desc = "Heavy-duty switching circuits for power control."
icon = 'icons/obj/module.dmi'
icon_state = "power_mod"
@@ -567,14 +567,14 @@
to_chat(user, "You cannot put the board inside, the frame is damaged!")
return
- user.visible_message("[user.name] inserts the power control board into [src].", \
- "You start to insert the power control board into the frame...")
+ user.visible_message("[user.name] inserts [W] into [src].", \
+ "You start to insert [W] into the frame...")
playsound(loc, 'sound/items/deconstruct.ogg', 50, TRUE)
if(do_after(user, 10, target = src))
if(!has_electronics())
electronics_state = APC_ELECTRONICS_INSTALLED
locked = FALSE
- to_chat(user, "You place the power control board inside the frame.")
+ to_chat(user, "You place [W] inside the frame.")
qdel(W)
else if(istype(W, /obj/item/mounted/frame/apc_frame) && opened)
@@ -617,34 +617,34 @@
if(terminal)
to_chat(user, "Disconnect the wires first!")
return
- to_chat(user, "You are trying to remove the power control board..." )
+ to_chat(user, "You start trying to remove the APC electronics..." )
if(I.use_tool(src, user, 50, volume = I.tool_volume))
if(has_electronics())
electronics_state = APC_ELECTRONICS_NONE
if(stat & BROKEN)
user.visible_message(\
- "[user.name] has broken the power control board inside [name]!",
- "You break the charred power control board and remove the remains.",
+ "[user.name] has broken the APC electronics inside [name]!",
+ "You break the charred APC electronics and remove the remains.",
"You hear a crack.")
return
//SSticker.mode:apcs-- //XSI said no and I agreed. -rastaf0
else if(emagged) // We emag board, not APC's frame
emagged = FALSE
user.visible_message(
- "[user.name] has discarded the shorted power control board from [name]!",
+ "[user.name] has discarded the shorted APC electronics from [name]!",
"You discarded the shorted board.")
return
else if(malfhack) // AI hacks board, not APC's frame
user.visible_message(\
- "[user.name] has discarded strangely the programmed power control board from [name]!",
+ "[user.name] has discarded strangely the programmed APC electronics from [name]!",
"You discarded the strangely programmed board.")
malfai = null
malfhack = FALSE
return
else
user.visible_message(\
- "[user.name] has removed the power control board from [name]!",
- "You remove the power control board.")
+ "[user.name] has removed the APC electronics from [name]!",
+ "You remove the APC electronics.")
new /obj/item/apc_electronics(loc)
return
else if(opened != APC_COVER_OFF) //cover isn't removed
diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm
index fb9a36033d3..56405883cce 100644
--- a/code/modules/research/designs/autolathe_designs.dm
+++ b/code/modules/research/designs/autolathe_designs.dm
@@ -124,7 +124,7 @@
category = list("initial","Tools")
/datum/design/apc_board
- name = "APC module"
+ name = "APC electronics"
id = "power control"
build_type = AUTOLATHE
materials = list(MAT_METAL = 100, MAT_GLASS = 100)