about summary refs log tree commit diff stats
path: root/apworld/client/textclient.gd
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-27 21:06:32 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-27 21:06:32 -0400
commit53e0509fcb20cc824e3fe5b3d3a826f09fc9c166 (patch)
treed83573fe2209122cc1c87d0a60ab22e6b20d4ec9 /apworld/client/textclient.gd
parentb0f474bee1c8e1111f7542bf4985136d9aedf340 (diff)
downloadlingo2-archipelago-53e0509fcb20cc824e3fe5b3d3a826f09fc9c166.tar.gz
lingo2-archipelago-53e0509fcb20cc824e3fe5b3d3a826f09fc9c166.tar.bz2
lingo2-archipelago-53e0509fcb20cc824e3fe5b3d3a826f09fc9c166.zip
Treat worldports as items for tracker
Diffstat (limited to 'apworld/client/textclient.gd')
-rw-r--r--apworld/client/textclient.gd5
1 files changed, 5 insertions, 0 deletions
diff --git a/apworld/client/textclient.gd b/apworld/client/textclient.gd index 1b36c29..af155fb 100644 --- a/apworld/client/textclient.gd +++ b/apworld/client/textclient.gd
@@ -150,6 +150,11 @@ func update_locations():
150 var location_name = gamedata.location_name_by_id.get(location_id, "(Unknown)") 150 var location_name = gamedata.location_name_by_id.get(location_id, "(Unknown)")
151 location_names.append(location_name) 151 location_names.append(location_name)
152 152
153 for port_id in ap.client._accessible_worldports:
154 if not ap.client._checked_worldports.has(port_id):
155 var port_name = gamedata.get_worldport_display_name(port_id)
156 location_names.append(port_name)
157
153 location_names.sort() 158 location_names.sort()
154 159
155 var count = 0 160 var count = 0