[MIRROR] Circuit component descriptions and module names are now visible to the naked eye. (#7290)

* Circuit component descriptions and module names are now visible to the naked eye. (#60545)

* Circuit component descriptions and module names are now visible to the naked eye.

Co-authored-by: Gurkenglas <gurkenglas@hotmail.de>
This commit is contained in:
SkyratBot
2021-08-01 11:42:08 +01:00
committed by GitHub
co-authored by Gurkenglas
parent 842f59fed5
commit 170863cfd7
54 changed files with 61 additions and 62 deletions
@@ -5,7 +5,7 @@
*/
/obj/item/circuit_component/module
display_name = "Module"
display_desc = "A component that has other components within it, acting like a function. Use it in your hand to control the amount of input and output ports it has, as well as being able to access the integrated circuit contained inside."
desc = "A component that has other components within it, acting like a function. Use it in your hand to control the amount of input and output ports it has, as well as being able to access the integrated circuit contained inside."
var/obj/item/integrated_circuit/module/internal_circuit
@@ -28,6 +28,7 @@
/obj/item/integrated_circuit/module/set_display_name(new_name)
. = ..()
attached_module.display_name = new_name
attached_module.name = "module ([new_name])"
/obj/item/integrated_circuit/module/load_component(type)
if(!attached_module)
@@ -47,7 +48,7 @@
/obj/item/circuit_component/module_input
display_name = "Input"
display_desc = "A component that receives data from the module it is attached to"
desc = "A component that receives data from the module it is attached to"
removable = FALSE
@@ -60,7 +61,7 @@
/obj/item/circuit_component/module_output
display_name = "Output"
display_desc = "A component that outputs data to the module it is attached to."
desc = "A component that outputs data to the module it is attached to."
removable = FALSE