Files
Bubberstation/code/modules/wiremod/preset/hello_world.dm
SkyratBot c23bd1cb8c [MIRROR] every case of initialize that should have mapload, does (#8374)
* every case of initialize that should have mapload, does

* E

Co-authored-by: tralezab <40974010+tralezab@users.noreply.github.com>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-09-24 23:07:53 +01: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")