about summary refs log tree commit diff stats
path: root/apworld/client/main.gd
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-10-01 12:32:00 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-10-01 12:32:00 -0400
commit54e22c5614ffe3a8a4a74fd3555edccf0c49ab23 (patch)
treeb7e59f69705504978672054820fc59c9c75307ad /apworld/client/main.gd
parentc7c64dcc56432e85e92a7c619a260bd01bf56e56 (diff)
downloadlingo2-archipelago-54e22c5614ffe3a8a4a74fd3555edccf0c49ab23.tar.gz
lingo2-archipelago-54e22c5614ffe3a8a4a74fd3555edccf0c49ab23.tar.bz2
lingo2-archipelago-54e22c5614ffe3a8a4a74fd3555edccf0c49ab23.zip
Show in-game when connection drops
Diffstat (limited to 'apworld/client/main.gd')
-rw-r--r--apworld/client/main.gd5
1 files changed, 5 insertions, 0 deletions
diff --git a/apworld/client/main.gd b/apworld/client/main.gd index bbefc02..e1f9610 100644 --- a/apworld/client/main.gd +++ b/apworld/client/main.gd
@@ -66,6 +66,11 @@ func _ready():
66 messages_instance.SCRIPT_rainbowText = runtime.load_script("rainbowText.gd") 66 messages_instance.SCRIPT_rainbowText = runtime.load_script("rainbowText.gd")
67 global.add_child(messages_instance) 67 global.add_child(messages_instance)
68 68
69 var effects_script = runtime.load_script("effects.gd")
70 var effects_instance = effects_script.new()
71 effects_instance.name = "Effects"
72 global.add_child(effects_instance)
73
69 var textclient_script = runtime.load_script("textclient.gd") 74 var textclient_script = runtime.load_script("textclient.gd")
70 var textclient_instance = textclient_script.new() 75 var textclient_instance = textclient_script.new()
71 textclient_instance.name = "Textclient" 76 textclient_instance.name = "Textclient"