TellMeWhen

TellMeWhen

24M Downloads

[CF 1418] Light's Hammer Icon

tmw-issue-import opened this issue ยท 1 comments

commented

I would like to track Light's Hammer the same way as Consecration.  After some research, I determined that Light's Hammer uses totem slot 2 whereas Consecration uses totem slot 1.  I made some changes to the bottom of Spells.lua and verified that they work for a Holy Paladin.

 

elseif pclass == "PALADIN" then
    TMW.COMMON.CurrentClassTotems = {
        name = L["ICONMENU_TOTEM"], --maybe call this something more descriptive like "Ground Effects"
        desc = L["ICONMENU_TOTEM_DESC"],
        {
            hasVariableNames = false,
            name = GetSpellInfo(26573), --consecration
            texture = GetSpellTexture(26573)
        },
        {
            hasVariableNames = false,
            name = GetSpellInfo(114158), --light's hammer
            texture = GetSpellTexture(114158)
        }
    }


Posted by CurseForge user vamaelo | Imported from CurseForge issue #1418 | Raw

commented

Added in the next alpha, thanks!


Posted by CurseForge user Cybeloras