From f71b47cefb22f8af634d41863576f374c9c0f4f4 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sun, 30 Mar 2025 00:29:27 +0100 Subject: [PATCH] Fix 'To Flag' --- .../Windows/QuestComponents/QuickAccessButtonsComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Questionable/Windows/QuestComponents/QuickAccessButtonsComponent.cs b/Questionable/Windows/QuestComponents/QuickAccessButtonsComponent.cs index 172df115..27338177 100644 --- a/Questionable/Windows/QuestComponents/QuickAccessButtonsComponent.cs +++ b/Questionable/Windows/QuestComponents/QuickAccessButtonsComponent.cs @@ -62,7 +62,7 @@ internal sealed class QuickAccessButtonsComponent public unsafe void Draw() { var map = AgentMap.Instance(); - using (var unused = ImRaii.Disabled(map == null || map->IsFlagMarkerSet || + using (var unused = ImRaii.Disabled(map == null || !map->IsFlagMarkerSet || map->FlagMapMarker.TerritoryId != _clientState.TerritoryType || !_navmeshIpc.IsReady)) { -- 2.30.2