From: Liza Carvelli Date: Wed, 9 Jul 2025 14:05:17 +0000 (+0200) Subject: Hide GPR window in Diadem X-Git-Tag: v5.21~9 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=645260caedfcf8cf77afaee2eef89d0e40995a92;p=Questionable.git Hide GPR window in Diadem --- 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()