Skip to content

Commit

Permalink
Add commented out GetTalentInfo usage for the case of the func later …
Browse files Browse the repository at this point in the history
…being changed/fixed
  • Loading branch information
EsreverWoW committed Jul 16, 2022
1 parent a9d6c44 commit cef19f4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions PallyPower.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1233,13 +1233,15 @@ function PallyPower:ScanSpells()
if i == 1 then
if self.isWrath then
-- TODO: GetTalentInfo bugged on beta right now so column/rows are "correct" but incorrect
-- talent = talent + select(5, GetTalentInfo(1, 6)) -- Improved Blessing of Wisdom
talent = talent + select(5, GetTalentInfo(1, 6)) -- Improved Blessing of Wisdom
else
talent = talent + select(5, GetTalentInfo(1, 10)) -- Improved Blessing of Wisdom
end
elseif i == 2 then
if self.isWrath then
-- TODO: GetTalentInfo bugged on beta right now so column/rows are "correct" but incorrect
-- talent = talent + select(5, GetTalentInfo(3, 5)) -- Improved Blessing of Might
talent = talent + select(5, GetTalentInfo(3, 1)) -- Improved Blessing of Might
else
talent = talent + select(5, GetTalentInfo(3, 1)) -- Improved Blessing of Might
Expand All @@ -1254,6 +1256,7 @@ function PallyPower:ScanSpells()
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
Expand All @@ -1275,20 +1278,23 @@ function PallyPower:ScanSpells()
if i == 1 then
if self.isWrath then
-- TODO: GetTalentInfo bugged on beta right now so column/rows are "correct" but incorrect
-- talent = talent + select(5, GetTalentInfo(2, 11)) -- Improved Devotion Aura
talent = talent + select(5, GetTalentInfo(2, 2)) -- Improved Devotion Aura
else
talent = talent + select(5, GetTalentInfo(2, 1)) -- Improved Devotion Aura
end
elseif i == 2 then
if self.isWrath then
-- TODO: GetTalentInfo bugged on beta right now so column/rows are "correct" but incorrect
-- talent = talent + select(5, GetTalentInfo(3, 14)) -- Sanctified Retribution
talent = talent + select(5, GetTalentInfo(3, 15)) -- Sanctified Retribution
else
talent = talent + select(5, GetTalentInfo(3, 11)) -- Improved Retribution Aura
end
elseif i == 3 then
if self.isWrath then
-- TODO: GetTalentInfo bugged on beta right now so column/rows are "correct" but incorrect
-- talent = talent + select(5, GetTalentInfo(1, 9)) -- Improved Concentration Aura
talent = talent + select(5, GetTalentInfo(1, 8)) -- Improved Concentration Aura
elseif self.isBCC then
talent = talent + select(5, GetTalentInfo(2, 12)) -- Improved Concentration Aura
Expand Down

0 comments on commit cef19f4

Please sign in to comment.