diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-31 19:24:11 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-31 19:24:11 -0400 |
commit | a54edd2c0a2fc3ca851e14be96068909a56a42df (patch) | |
tree | 9f802dc3a91daf019a5e331a0de83043175fa5d6 /client/Archipelago/client.gd | |
parent | 1d9fcb1db4ab2b9b5314588d18fc601a9a83f6fa (diff) | |
download | lingo2-archipelago-a54edd2c0a2fc3ca851e14be96068909a56a42df.tar.gz lingo2-archipelago-a54edd2c0a2fc3ca851e14be96068909a56a42df.tar.bz2 lingo2-archipelago-a54edd2c0a2fc3ca851e14be96068909a56a42df.zip |
[Client] Batch sending locations on map load
Diffstat (limited to 'client/Archipelago/client.gd')
-rw-r--r-- | client/Archipelago/client.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/Archipelago/client.gd b/client/Archipelago/client.gd index 4c34e91..7b690f5 100644 --- a/client/Archipelago/client.gd +++ b/client/Archipelago/client.gd | |||
@@ -353,6 +353,10 @@ func sendLocation(loc_id): | |||
353 | sendMessage([{"cmd": "LocationChecks", "locations": [loc_id]}]) | 353 | sendMessage([{"cmd": "LocationChecks", "locations": [loc_id]}]) |
354 | 354 | ||
355 | 355 | ||
356 | func sendLocations(loc_ids): | ||
357 | sendMessage([{"cmd": "LocationChecks", "locations": loc_ids}]) | ||
358 | |||
359 | |||
356 | func setValue(key, value, operation = "replace"): | 360 | func setValue(key, value, operation = "replace"): |
357 | sendMessage( | 361 | sendMessage( |
358 | [ | 362 | [ |