mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
[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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user