We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9daf5e commit 270c46aCopy full SHA for 270c46a
1 file changed
Core.lua
@@ -7,6 +7,7 @@ cPointDisplay.Types = {
7
name = "General",
8
points = {
9
[1] = {name = "Combo Points", id = "cp", barcount = 5},
10
+ [2] = {name = "Combo Points with Deeper Stratagem", id = "cp6", barcount = 6},
11
}
12
},
13
["PALADIN"] = {
@@ -526,7 +527,11 @@ function cPointDisplay:GetPoints(CurClass, CurType)
526
527
NewPoints = GetComboPoints("vehicle", "vehicle")
528
end
529
else
- NewPoints = UnitPower("player", SPELL_POWER_COMBO_POINTS)
530
+ local maxcp = UnitPowerMax("player", SPELL_POWER_COMBO_POINTS)
531
+ if (CurType == "cp" and maxcp == 5) or
532
+ (CurType == "cp6" and maxcp == 6) then
533
+ NewPoints = UnitPower("player", SPELL_POWER_COMBO_POINTS)
534
+ end
535
536
537
-- Paladin
0 commit comments