Skip to content

Commit

Permalink
Remove rank display on the blessings window for BoK/BoS in Wrath Classic
Browse files Browse the repository at this point in the history
  • Loading branch information
EsreverWoW committed Aug 21, 2022
1 parent 8cafbe3 commit 9d89ad3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion PallyPower.lua
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,11 @@ function PallyPowerBlessingsGrid_Update(self, elapsed)
_G[fname .. "Skill" .. id]:Show()
local txt = SkillInfo[id].rank
if SkillInfo[id].talent and (SkillInfo[id].talent + 0 > 0) then
txt = txt .. "+" .. SkillInfo[id].talent
if PallyPower.isWrath and id > 2 then
txt = SkillInfo[id].talent
else
txt = txt .. "+" .. SkillInfo[id].talent
end
end
_G[fname .. "Skill" .. id]:SetText(txt)
else
Expand Down

0 comments on commit 9d89ad3

Please sign in to comment.