From 0049d2995ca09324a9c973460c0a4acf97eba907 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Mon, 23 Feb 2026 12:46:37 -0500 Subject: Add settings to prioritize locations on current map --- apworld/client/manager.gd | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'apworld/client/manager.gd') diff --git a/apworld/client/manager.gd b/apworld/client/manager.gd index f10a0b7..9b790c0 100644 --- a/apworld/client/manager.gd +++ b/apworld/client/manager.gd @@ -14,6 +14,7 @@ var connection_history = [] var show_compass = false var show_locations = false var show_minimap = false +var prioritize_current_map = false var client var keyboard @@ -130,6 +131,9 @@ func _init(): if data.size() > 6: show_minimap = data[6] + if data.size() > 7: + prioritize_current_map = data[7] + # We need to create a mapping from material paths to the original colors of # those materials. We force reload the materials, overwriting any custom # textures, and create the mapping. We then reload the textures in case the @@ -185,6 +189,7 @@ func saveSettings(): show_compass, show_locations, show_minimap, + prioritize_current_map, ] file.store_var(data, true) file.close() -- cgit 1.4.1