Extended Character Stats

Extended Character Stats

8M Downloads

Draenei Shamans are not getting their own Heroic Presence

BreakBB opened this issue ยท 2 comments

commented

Bug description

A quick search showed, that Wotlk introduced a new spell ID for Heroic Presence. It might be this is now needed for certain classes together with the old ID.

Screenshots

Version

v3.0.4

commented

Simple fix for this is to add this to line 109 in Melee.lua:
if (not otherDraeneiInGroup) and IsSpellKnown(6562) or IsSpellKnown(28878) then

And on line 134 in SpellHit.lua:
if (not otherDraeneiInGroup) and IsSpellKnown(28878) or IsSpellKnown(6562) then

Not sure if the best fix, but it adds the Draenei hit to both SpellHit and MeleeHit and not just the one that is "base" for the respective class. (ie shamans would only get spellhit and not melee hit, now they would get both.)

commented

Thanks @ostjaevel ๐Ÿ‘๐Ÿป