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

This commit is contained in:
Gurkenglas
2021-07-31 21:19:43 -07:00
committed by GitHub
parent a66d210d73
commit aa018a857a
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