From 53e0509fcb20cc824e3fe5b3d3a826f09fc9c166 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 27 Sep 2025 21:06:32 -0400 Subject: Treat worldports as items for tracker --- apworld/client/textclient.gd | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'apworld/client/textclient.gd') 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(): var location_name = gamedata.location_name_by_id.get(location_id, "(Unknown)") location_names.append(location_name) + for port_id in ap.client._accessible_worldports: + if not ap.client._checked_worldports.has(port_id): + var port_name = gamedata.get_worldport_display_name(port_id) + location_names.append(port_name) + location_names.sort() var count = 0 -- cgit 1.4.1