diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-30 23:18:40 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-30 23:18:40 -0400 |
| commit | 7a70828e9d0a4bf92491da1a88fac776de42d3b5 (patch) | |
| tree | 81bbeab0b239f4e9b5b571fb992678addf002199 | |
| parent | 8752dda136764b13009ae7f211071bb6ed0f3db6 (diff) | |
| download | lingo2-archipelago-7a70828e9d0a4bf92491da1a88fac776de42d3b5.tar.gz lingo2-archipelago-7a70828e9d0a4bf92491da1a88fac776de42d3b5.tar.bz2 lingo2-archipelago-7a70828e9d0a4bf92491da1a88fac776de42d3b5.zip | |
Fixed disconnect when tracking an old slot
| -rw-r--r-- | apworld/context.py | 2 |
1 files changed, 1 insertions, 1 deletions
| diff --git a/apworld/context.py b/apworld/context.py index ffe2acd..c367b6c 100644 --- a/apworld/context.py +++ b/apworld/context.py | |||
| @@ -277,7 +277,7 @@ class Lingo2ClientContext(CommonContext): | |||
| 277 | "operations": [{"operation": "default", "value": 0}] | 277 | "operations": [{"operation": "default", "value": 0}] |
| 278 | }] | 278 | }] |
| 279 | 279 | ||
| 280 | if self.slot_data["shuffle_worldports"]: | 280 | if self.slot_data.get("shuffle_worldports", False): |
| 281 | self.set_notify(self.get_datastorage_key("worldports")) | 281 | self.set_notify(self.get_datastorage_key("worldports")) |
| 282 | msg_batch.append({ | 282 | msg_batch.append({ |
| 283 | "cmd": "Set", | 283 | "cmd": "Set", |
