We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45dcf57 commit 17d3e0aCopy full SHA for 17d3e0a
1 file changed
Core.lua
@@ -26,6 +26,12 @@ cPointDisplay.Types = {
26
points = {
27
[1] = {name = "Arcane Charges", id = "ac", barcount = 4}
28
}
29
+ },
30
+ ["HUNTER"] = {
31
+ name = "Hunter",
32
+ points = {
33
+ [1] = {name = "Mongoose Bite Charges", id = "mb", barcount = 3}
34
+ }
35
36
37
local Types = cPointDisplay.Types
@@ -534,6 +540,12 @@ function cPointDisplay:GetPoints(CurClass, CurType)
534
540
NewPoints = UnitPower("player", SPELL_POWER_ARCANE_CHARGES)
535
541
end
536
542
543
+ -- Hunter
544
+ elseif CurClass == "HUNTER" and PlayerSpec == SPEC_HUNTER_SURVIVAL then
545
+ -- Mongoose Bite Charges
546
+ if CurType == "mb" then
547
+ NewPoints = GetSpellCharges(190928)
548
+ end
537
549
Points[CurType] = NewPoints
538
550
539
551
0 commit comments