Skip to content

Commit

Permalink
Fix shapeshift forms for Paladin
Browse files Browse the repository at this point in the history
  • Loading branch information
Snakybo committed May 1, 2024
1 parent 837512e commit 13e8464
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions Clicked/Core/Utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -121,19 +121,29 @@ else
}

if Addon.EXPANSION_LEVEL >= Addon.EXPANSION.BC then
table.insert(shapeshiftForms["DRUID"], { 33891 }) -- Tree of Life
table.insert(shapeshiftForms["DRUID"], { 40120, 33943 }) -- Swift Flight Form, Flight Form
local DRUID = "DRUID"
table.insert(shapeshiftForms[DRUID], { 33891 }) -- Tree of Life
table.insert(shapeshiftForms[DRUID], { 40120, 33943 }) -- Swift Flight Form, Flight Form
end

if Addon.EXPANSION_LEVEL >= Addon.EXPANSION.WOTLK then
local DEATHKNIGHT = "DEATHKNIGHT"

shapeshiftForms[DEATHKNIGHT] = {
{ 48266 }, -- Blood Presence
{ 48263 }, -- Frost Presence
{ 48265 } -- Unholy Presence
}
end

if Addon.EXPANSION_LEVEL >= Addon.EXPANSION.CATA then
local PALADIN = "PALADIN"
shapeshiftForms[PALADIN] = {
{ 465 }, -- Devotion Aura
{ 7294 }, -- Retribution Aura
{ 19746 }, -- Concentration Aura
{ 32223 } -- Crusader Aura
}
end
end

--- @type string[]
Expand Down

0 comments on commit 13e8464

Please sign in to comment.