From b413e5a9c5d5e5e6eff63a74fbb3ecdabf2cc66f Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 2 Nov 2025 13:07:30 -0500 Subject: Prioritize hinted locations in tracker --- apworld/client/manager.gd | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'apworld/client/manager.gd') diff --git a/apworld/client/manager.gd b/apworld/client/manager.gd index b7bb5fd..830ebb8 100644 --- a/apworld/client/manager.gd +++ b/apworld/client/manager.gd @@ -146,6 +146,7 @@ func _ready(): client.accessible_locations_updated.connect(_on_accessible_locations_updated) client.checked_locations_updated.connect(_on_checked_locations_updated) client.ignored_locations_updated.connect(_on_ignored_locations_updated) + client.hinted_locations_updated.connect(_on_hinted_locations_updated) client.checked_worldports_updated.connect(_on_checked_worldports_updated) client.door_latched.connect(_on_door_latched) @@ -394,6 +395,12 @@ func _on_ignored_locations_updated(locations): textclient_node.update_locations() +func _on_hinted_locations_updated(): + var textclient_node = global.get_node("Textclient") + if textclient_node != null: + textclient_node.update_locations() + + func _on_door_latched(door_id): var gamedata = global.get_node("Gamedata") if gamedata.get_door_map_name(door_id) != global.map: -- cgit 1.4.1