How to fix this addon to work with 5.4.x #55


  • New
  • Defect
Open
Assigned to _ForgeUser8662660
  • khartina created this issue Dec 22, 2013

    I love this addon and it's been driving me bonkers that it's broken for most spellcasters, here's how to fix it!

    The issue is that it uses ONE spell id per class as some kind of reference point, you can see these in the

    /gcd/modules/gcd.lua

    they're listed at the top like this

    ocal spells = {
        ["DRUID"] = 5176,
        ["PALADIN"] = 20154,
        ["PRIEST"] = 585,
        ["SHAMAN"] = 403,
        ["WARRIOR"] = 34428,
        ["DEATHKNIGHT"] = 47541,
        ["HUNTER"] = 56641,
        ["MAGE"] = 133,
        ["WARLOCK"] = 686,
        ["ROGUE"] = 1752

    Well those spell id's aren't correct for every class, mage for example doesn't start with fireball anymore <spellid 133> so the addon just screws up and poo's out a .lua error, if you change that mage spell ID to 44614 which is frostfire bolt the spell you start with now, then the addon works perfectly.

    I'm not an addon writer, most of this stuff is severely over my head and it was pure luck that I found this, I really hope the author will make the necessary changes to get this addon working again it's amazing!

  • khartina added the tags New Defect Dec 22, 2013
  • tacotarget posted a comment Feb 21, 2014

To post a comment, please login or register a new account.