Files
S.P.L.U.R.T-Station-13/code/modules/wiremod/preset/hello_world.dm
2022-04-06 18:41:31 -03:00

15 lines
362 B
Plaintext

/**
* # Hello World preset
*
* Says "Hello World" when triggered. Needs to be wired up and connected first.
*/
/obj/item/integrated_circuit/loaded/hello_world
/obj/item/integrated_circuit/loaded/hello_world/Initialize(mapload)
. = ..()
var/obj/item/circuit_component/speech/speech = new()
add_component(speech)
speech.message.set_input("Hello World")