about summary refs log tree commit diff stats
path: root/Archipelago/client.gd
diff options
context:
space:
mode:
Diffstat (limited to 'Archipelago/client.gd')
-rw-r--r--Archipelago/client.gd12
1 files changed, 9 insertions, 3 deletions
diff --git a/Archipelago/client.gd b/Archipelago/client.gd index 40fa4db..3cb46d3 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd
@@ -1,5 +1,13 @@
1extends Node 1extends Node
2 2
3var SCRIPT_doorControl
4var SCRIPT_effects
5var SCRIPT_location
6var SCRIPT_mypainting
7var SCRIPT_notifier
8var SCRIPT_panel
9var SCRIPT_uuid
10
3var ap_server = "" 11var ap_server = ""
4var ap_user = "" 12var ap_user = ""
5var ap_pass = "" 13var ap_pass = ""
@@ -71,8 +79,6 @@ var _location_name_to_id = {} # LINGO only
71 79
72var _remote_version = {"major": 0, "minor": 0, "build": 0} 80var _remote_version = {"major": 0, "minor": 0, "build": 0}
73 81
74const uuid_util = preload("user://maps/Archipelago/vendor/uuid.gd")
75
76# TODO: caching per MW/slot, reset between connections 82# TODO: caching per MW/slot, reset between connections
77var _authenticated = false 83var _authenticated = false
78var _seed = "" 84var _seed = ""
@@ -518,7 +524,7 @@ func connectToRoom():
518 "password": ap_pass, 524 "password": ap_pass,
519 "game": "Lingo", 525 "game": "Lingo",
520 "name": ap_user, 526 "name": ap_user,
521 "uuid": uuid_util.v4(), 527 "uuid": SCRIPT_uuid.v4(),
522 "version": ap_version, 528 "version": ap_version,
523 "items_handling": 0b111, # always receive our items 529 "items_handling": 0b111, # always receive our items
524 "tags": [], 530 "tags": [],