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.gd6
1 files changed, 6 insertions, 0 deletions
diff --git a/Archipelago/client.gd b/Archipelago/client.gd index 0326ffb..d7074f5 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd
@@ -540,6 +540,12 @@ func sendLocation(loc_id):
540 _held_locations.append(loc_id) 540 _held_locations.append(loc_id)
541 541
542 542
543func setValue(key, value):
544 sendMessage(
545 [{"cmd": "Set", "key": key, "operations": [{"operation": "replace", "value": value}]}]
546 )
547
548
543func completedGoal(): 549func completedGoal():
544 sendMessage([{"cmd": "StatusUpdate", "status": 30}]) # CLIENT_GOAL 550 sendMessage([{"cmd": "StatusUpdate", "status": 30}]) # CLIENT_GOAL
545 551