GetSpellInfo Deprecated in The War Within #2


Open
  • ryulinho created this issue Jul 20, 2024

    Heads up regarding GetSpellInfo which is becoming deprecated in The War Within.

     

    GetSpellInfo was replaced with C_Spell.GetSpellInfo

    It returns information differently - here is an example for Divine Shield.

     

    /dump GellSpellInfo(642)
    Dump: value=GetSpellInfo(642)
    [1]="Divine Shield",
    [3]=524354,
    [4]=0,
    [5]=0,
    [6]=0,
    [7]=642,
    [8]=524354

     

    /dump C_Spell.GetSpellInfo(642)
    Dump: value=C_Spell.GetSpellInfo(642)
    [1]={
    castTime=0,
    name="Divine Shield",
    minRange=0,
    originalIconID=524354,
    icondID=524354,
    maxRange=0,
    spellID=642
    }


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