mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-16 04:34:21 +00:00
* 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>
15 lines
362 B
Plaintext
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")
|
|
|