From aca4c7decdfc1a100c9afe053dc720a998510f40 Mon Sep 17 00:00:00 2001 From: EsreverWoW <49285632+EsreverWoW@users.noreply.github.com> Date: Sat, 30 Jul 2022 12:37:58 -0500 Subject: [PATCH] Only track if BoS exists; Don't check for talents since it is only 1 point --- PallyPower.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/PallyPower.lua b/PallyPower.lua index ea0ec3a..4b6b182 100644 --- a/PallyPower.lua +++ b/PallyPower.lua @@ -1275,10 +1275,6 @@ function PallyPower:ScanSpells() else talent = talent + select(5, GetTalentInfo(2, 12)) -- Blessing of Sanctuary end - elseif i == 4 and self.isWrath then - -- TODO: GetTalentInfo bugged on beta right now so column/rows are "correct" but incorrect - -- talent = talent + select(5, GetTalentInfo(2, 12)) -- Blessing of Sanctuary - talent = talent + select(5, GetTalentInfo(2, 8)) -- Blessing of Sanctuary end RankInfo[i].talent = talent RankInfo[i].rank = tonumber(select(3, strfind(spellRank, "(%d+)")))