From 49528c368efcacbfddc21c1095423cd09d02225d Mon Sep 17 00:00:00 2001 From: Vollmer Date: Tue, 12 Nov 2024 16:10:39 +0100 Subject: [PATCH] [Bugfix] Fix issue with API calls not properly triggering updates when Frame Names are parsed eg. "CUF_Target" --- API/Common.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/API/Common.lua b/API/Common.lua index daf4447..03ddd82 100644 --- a/API/Common.lua +++ b/API/Common.lua @@ -29,9 +29,7 @@ function API:GetUnitFrame(name) end end - local lowerCaseUnitName = string.lower(name) - - return unitFrame, lowerCaseUnitName + return unitFrame, unitFrame._baseUnit end --- Returns all unit frames as an indexed table.