Skip to content

Commit

Permalink
Change order for unitbuff and unitdebuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamanis committed Sep 13, 2024
1 parent 3f7be98 commit 675e56d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,10 @@
local GetSpellInfo = C_Spell and C_Spell.GetSpellInfo or GetSpellInfo
Details222.GetSpellInfo = GetSpellInfo

local UnitBuff = UnitBuff or C_UnitAuras.GetBuffDataByIndex
local UnitBuff = C_UnitAuras and C_UnitAuras.GetBuffDataByIndex or UnitBuff
Details222.UnitBuff = UnitBuff

local UnitDebuff = UnitDebuff or C_UnitAuras.GetDebuffDataByIndex
local UnitDebuff = C_UnitAuras and C_UnitAuras.GetDebuffDataByIndex or UnitDebuff
Details222.UnitDebuff = UnitDebuff

if (C_Spell and C_Spell.GetSpellInfo) then
Expand Down

0 comments on commit 675e56d

Please sign in to comment.