mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-19 21:46:42 +00:00
Co-authored-by: Watermelon914 <3052169-Watermelon914@users.noreply.gitlab.com> Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> Co-authored-by: Maurukas <66576896+Maurukas@users.noreply.github.com>
15 lines
355 B
Plaintext
15 lines
355 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()
|
|
. = ..()
|
|
var/obj/item/circuit_component/speech/speech = new()
|
|
add_component(speech)
|
|
|
|
speech.message.set_input("Hello World")
|
|
|