diff --git a/project.godot b/project.godot index b434c88..4d32ea3 100644 --- a/project.godot +++ b/project.godot @@ -31,10 +31,6 @@ DownloadManager="*res://scripts/autoload/DownloadManager.gd" window/size/viewport_width=1920 window/size/viewport_height=1080 -[network] - -tls/enable_tls_v1.3=false - [rendering] renderer/rendering_method="gl_compatibility" diff --git a/scripts/autoload/DownloadManager.gd b/scripts/autoload/DownloadManager.gd index b9a3ec1..1b7e753 100644 --- a/scripts/autoload/DownloadManager.gd +++ b/scripts/autoload/DownloadManager.gd @@ -67,6 +67,8 @@ func download_from_origin() -> int: await download_file(origin + "index", "user://download/temp/index.json") + get_uuid() + await download_file(origin + "card/list", "user://download/%s/cards/list.json" % [uuid]) await download_file(origin + "reaction/list", "user://download/%s/reactions/list.json" % [uuid]) await download_file(origin + "matter/list", "user://download/%s/matters/list.json" % [uuid])