TBC channeling ticks and interruptable cast bars #363


  • Fixed
Closed
  • larryt1216 created this issue Jul 28, 2021

    having issues with blizzard not showing channeling ticks and uninterruptable cast bars not showing up different.  think i have it set up right and not sure if this is a tbc thing or if theres another fix or something

  • takatifu_sp posted a comment Aug 1, 2021

    my mind flay ticks don't show up either

  • Lexus_maglan posted a comment Oct 4, 2021

    MIND FLAY FIX

     

    AddOns\Quartz\modules\Player.lua

     

    local channelingTicks = WoWBC and {} or
    {
    -- warlock
    [GetSpellInfo(234153)] = 5, -- drain life
    [GetSpellInfo(198590)] = 5, -- drain soul
    -- druid
    [GetSpellInfo(740)] = 4, -- tranquility
    -- priest
    [GetSpellInfo(64843)] = 4, -- divine hymn
    [GetSpellInfo(15407)] = 6, -- mind flay
    [GetSpellInfo(47540)] = 3, -- penance
    [GetSpellInfo(205065)] = 5, -- void torrent
    [GetSpellInfo(48045)] = 6, -- mind sear
    -- mage
    [GetSpellInfo(5143)] = 5, -- arcane missiles
    [GetSpellInfo(205021)] = 5, -- ray of frost
    -- monk
    [GetSpellInfo(117952)] = 4, -- crackling jade lightning
    [GetSpellInfo(191837)] = 3, -- essence font
    [GetSpellInfo(115175)] = 8, -- soothing mist
    }

     

    CHANGE TO

     

    local channelingTicks = {
    [GetSpellInfo(15407)] = 3, -- mind flay
    }

     

    On my SP it works.

  • nevcairiel closed issue Jun 28, 2022
  • nevcairiel added a tag Fixed Jun 28, 2022

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