about summary refs log tree commit diff stats
path: root/apworld
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-30 23:18:40 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-30 23:18:40 -0400
commit7a70828e9d0a4bf92491da1a88fac776de42d3b5 (patch)
tree81bbeab0b239f4e9b5b571fb992678addf002199 /apworld
parent8752dda136764b13009ae7f211071bb6ed0f3db6 (diff)
downloadlingo2-archipelago-7a70828e9d0a4bf92491da1a88fac776de42d3b5.tar.gz
lingo2-archipelago-7a70828e9d0a4bf92491da1a88fac776de42d3b5.tar.bz2
lingo2-archipelago-7a70828e9d0a4bf92491da1a88fac776de42d3b5.zip
Fixed disconnect when tracking an old slot
Diffstat (limited to 'apworld')
-rw-r--r--apworld/context.py2
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",