Bugfixes: Removed retail API calls, ran linting script and static analysis.

This commit is contained in:
Bluewhale1337
2026-07-25 00:42:46 +02:00
parent 390067cdbd
commit c51cfa3f73
15 changed files with 65 additions and 28 deletions
+8 -4
View File
@@ -395,21 +395,25 @@ function mod:UpdateElement_AurasByUnitID(unit)
WipeAuraList(guid)
local index = 1
local name, _, texture, count, _, duration, expirationTime, unitCaster, _, _, spellID = UnitAura(unit, index, "HARMFUL")
local texture, count, debuffType = UnitAura(unit, index, "HARMFUL")
local name, duration, expirationTime, unitCaster, spellID = texture, 0, 0, nil, nil
while name do
SetSpellDuration(spellID, duration)
SetAuraInstance(guid, name, spellID, expirationTime, count, UnitGUID(unitCaster or ""), duration, texture, AURA_TYPE_DEBUFF)
index = index + 1
name , _, texture, count, _, duration, expirationTime, unitCaster, _, _, spellID = UnitAura(unit, index, "HARMFUL")
texture, count, debuffType = UnitAura(unit, index, "HARMFUL")
name = texture
end
index = 1
local name, _, texture, count, _, duration, expirationTime, unitCaster, _, _, spellID = UnitAura(unit, index, "HELPFUL")
texture, count, debuffType = UnitAura(unit, index, "HELPFUL")
name = texture
while name do
SetSpellDuration(spellID, duration)
SetAuraInstance(guid, name, spellID, expirationTime, count, UnitGUID(unitCaster or ""), duration, texture, AURA_TYPE_BUFF)
index = index + 1
name, _, texture, count, _, duration, expirationTime, unitCaster, _, _, spellID = UnitAura(unit, index, "HELPFUL")
texture, count, debuffType = UnitAura(unit, index, "HELPFUL")
name = texture
end
local raidIcon, name
+2 -1
View File
@@ -561,7 +561,8 @@ function mod:OnCreated(frame)
moveDown:SetDuration(0.1)
moveDown:SetOffset(0, -35)
moveDown:SetSmoothing("In")
moveDown:SetScript("OnFinished", function(self)
moveDown:SetScript("OnFinished", function()
local self = this
self:Reset()
end)
+4 -2
View File
@@ -27,7 +27,9 @@ local function LoadSkin()
}
for i = 1, getn(skins) do
E:SetTemplate(_G[skins[i]], "Transparent")
if _G[skins[i]] then
E:SetTemplate(_G[skins[i]], "Transparent")
end
end
-- ChatMenus
@@ -188,7 +190,7 @@ local function LoadSkin()
for i = 1, getn(BlizzardHeader) do
local title = _G[BlizzardHeader[i].."Header"]
if title then
if title and title.SetTexture then
title:SetTexture("")
title:ClearAllPoints()
if title == _G["GameMenuFrameHeader"] then
+1
View File
@@ -161,6 +161,7 @@ local tabs = {
}
function S:HandleTab(tab)
if not tab then return end
local name = tab:GetName()
for _, object in pairs(tabs) do
local tex = _G[name..object]
+2 -1
View File
@@ -69,7 +69,8 @@ function UF:Construct_AuraIcon(button)
button.overlay:SetTexture(nil)
button:RegisterForClicks("RightButtonUp")
button:SetScript("OnClick", function(self)
button:SetScript("OnClick", function()
local self = this
if E.db.unitframe.auraBlacklistModifier == "NONE"
or not ((E.db.unitframe.auraBlacklistModifier == "SHIFT" and IsShiftKeyDown())
or (E.db.unitframe.auraBlacklistModifier == "ALT" and IsAltKeyDown())
@@ -18,13 +18,12 @@ function UF:CombobarDetachedUpdate()
CombobarDetached:RegisterEvent("PLAYER_ENTERING_WORLD")
CombobarDetached:RegisterEvent("UPDATE_SHAPESHIFT_FORM")
CombobarDetached:SetScript("OnEvent", function(self, event, unit)
print(self, event, unit)
CombobarDetached:SetScript("OnEvent", function()
if event == "PLAYER_ENTERING_WORLD" then
E:ShapeshiftDelayedUpdate(ElvUF_Target.ComboPoints.Override, ElvUF_Target)
end
ElvUF_Target.ComboPoints.Override(ElvUF_Target, event, unit)
ElvUF_Target.ComboPoints.Override(ElvUF_Target, event, arg1)
end)
end