v1.0.0.1: Duty List quest click keeps Area Map open; player flags show on minimap

Made-with: Cursor
This commit is contained in:
2026-02-26 21:16:31 -05:00
parent 9659f7a7d1
commit 4b2c337695
4 changed files with 40 additions and 16 deletions
@@ -674,7 +674,8 @@ public partial class MapRenderer
var agent = AgentMap.Instance();
if (agent->FlagMarkerCount is 0) return;
ref var flag = ref agent->FlagMapMarkers[0];
if (flag.TerritoryId != agent->CurrentMapId) return;
// Match territory (zone) and map (sub-area); flag stores TerritoryId and MapId from SetFlagMapMarker
if (flag.TerritoryId != agent->CurrentTerritoryId || flag.MapId != agent->CurrentMapId) return;
if (System.IconConfig.IconSettingMap.TryGetValue(flag.MapMarker.IconId, out var setting) && setting.Hide) return;