From 2ca4ff73d58648873a1ef83d7b4fec2629e4bdaa Mon Sep 17 00:00:00 2001 From: Buds Date: Fri, 13 May 2022 17:53:45 +0200 Subject: [PATCH] exclude "^CompactRaidFrame%d+" fix an issue with tank's target'target returned instead of raid unit frame --- LibGetFrame-1.0.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LibGetFrame-1.0.lua b/LibGetFrame-1.0.lua index 2651c2b..0101902 100644 --- a/LibGetFrame-1.0.lua +++ b/LibGetFrame-1.0.lua @@ -1,5 +1,5 @@ local MAJOR_VERSION = "LibGetFrame-1.0" -local MINOR_VERSION = 36 +local MINOR_VERSION = 37 if not LibStub then error(MAJOR_VERSION .. " requires LibStub.") end local lib = LibStub:NewLibrary(MAJOR_VERSION, MINOR_VERSION) if not lib then return end @@ -243,6 +243,7 @@ local defaultOptions = { "RavenOverlay", "AshToAshUnit%d+ShadowGroupHeaderUnitButton%d+", "InvenUnitFrames_TargetTargetTarget", + "^CompactRaidFrame%d+", -- for main assist / main tank target'target }, returnAll = false, }