Fix dynamic group icons scaling issue, ensure class & spec load on login, reworked queued actions

dynamic group icons used incorrectly parent scale, even without set
This commit is contained in:
NoM0Re
2025-02-25 21:16:08 +01:00
parent 7c7869494e
commit 2157fbc553
5 changed files with 18 additions and 68 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ local function UnitExistsFixed(unit)
if #unit > 9 and unit:sub(1, 9) == "nameplate" then
return nameplateExists[unit] or false
end
return UnitExists(unit) or UnitGUID(unit) or false
return (UnitExists(unit) and UnitGUID(unit)) or false
end
local function UnitIsVisibleFixed(unit)