Skip to content

Commit

Permalink
Fix spells with missing parents
Browse files Browse the repository at this point in the history
Fixes #721, Fixes #724
  • Loading branch information
jordonwow committed May 14, 2024
1 parent eca9e08 commit c4b660e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions BigDebuffs_Cata.lua
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ addon.Spells = {
-- Interrupts

[15752] = { type = INTERRUPT, duration = 10 }, -- Linken's Boomerang Disarm
[19647] = { parent = 19244, duration = 6 }, -- Spell Lock - Rank 2 (Warlock)
[19647] = { type = INTERRUPT, duration = 6 }, -- Spell Lock - Rank 2 (Warlock)
[13491] = { type = INTERRUPT, duration = 5 }, -- Iron Knuckles
[16979] = { type = INTERRUPT, duration = 4 }, -- Feral Charge (Druid)
[2139] = { type = INTERRUPT, duration = 8 }, -- Counterspell (Mage)
Expand Down Expand Up @@ -290,7 +290,7 @@ addon.Spells = {
[770] = { type = BUFF_OTHER }, -- Faerie Fire
[16857] = { parent = 770 }, -- Faerie Fire (Feral)
[33786] = { type = CROWD_CONTROL }, -- Cyclone
[45334] = { parent = 19675 },
[45334] = { type = ROOT }, -- Feral Charge Effect
[17116] = { type = BUFF_DEFENSIVE }, -- Nature's Swiftness

-- Mage
Expand Down Expand Up @@ -337,7 +337,7 @@ addon.Spells = {
[13877] = { type = BUFF_OFFENSIVE}, -- Blade Flurry
[1833] = { type = CROWD_CONTROL }, -- Cheap Shot
[408] = { type = CROWD_CONTROL }, -- Kidney Shot
[6770] = { parent = 2070 },
[6770] = { type = CROWD_CONTROL }, -- Sap
[2094] = { type = CROWD_CONTROL }, -- Blind
[2983] = { type = BUFF_OFFENSIVE }, -- Sprint
[5277] = { type = BUFF_DEFENSIVE }, -- Evasion
Expand Down

0 comments on commit c4b660e

Please sign in to comment.