From 645260caedfcf8cf77afaee2eef89d0e40995a92 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Wed, 9 Jul 2025 16:05:17 +0200 Subject: [PATCH] Hide GPR window in Diadem --- GatheringPathRenderer/Windows/EditorWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GatheringPathRenderer/Windows/EditorWindow.cs b/GatheringPathRenderer/Windows/EditorWindow.cs index 08925f15..913b26c5 100644 --- a/GatheringPathRenderer/Windows/EditorWindow.cs +++ b/GatheringPathRenderer/Windows/EditorWindow.cs @@ -124,7 +124,8 @@ internal sealed class EditorWindow : Window public override bool DrawConditions() { - return _target != null || _targetLocation != null; + return !(_clientState.TerritoryType is 0 or 939) && + (_target != null || _targetLocation != null); } public override void Draw() -- 2.30.2