We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55bcd23 commit 36317e0Copy full SHA for 36317e0
Mappy/MapRenderer/MapRenderer.GameObject.cs
@@ -8,6 +8,7 @@
8
using FFXIVClientStructs.FFXIV.Client.Game.Object;
9
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
10
using ImGuiNET;
11
+using KamiLib.Extensions;
12
using Lumina.Excel.GeneratedSheets2;
13
using Mappy.Classes;
14
using Mappy.Extensions;
@@ -21,7 +22,7 @@ private unsafe void DrawGameObjects() {
21
22
23
if (Service.ClientState is not { LocalPlayer: { } player }) return;
24
- if (System.SystemConfig.ShowRadar) {
25
+ if (System.SystemConfig.ShowRadar && !Service.Condition.IsBoundByDuty()) {
26
DrawRadar(player);
27
}
28
0 commit comments