From 9d89ad35e393e07bf2efc5b318ed8e74582c9779 Mon Sep 17 00:00:00 2001 From: EsreverWoW <49285632+EsreverWoW@users.noreply.github.com> Date: Sat, 20 Aug 2022 23:37:49 -0500 Subject: [PATCH] Remove rank display on the blessings window for BoK/BoS in Wrath Classic --- PallyPower.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/PallyPower.lua b/PallyPower.lua index 8d70158..2ed9856 100644 --- a/PallyPower.lua +++ b/PallyPower.lua @@ -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