Skip to content

Commit

Permalink
make Shield Bash a child of Pummel since it shares cooldown
Browse files Browse the repository at this point in the history
  • Loading branch information
jordonwow committed May 30, 2021
1 parent 83d2d9b commit 3b09a90
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions BurningCrusade.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1555,11 +1555,6 @@ addon.Cooldowns = {

-- Warrior

[72] = { duration = 12, class = "WARRIOR", default = true }, -- Shield Bash (Rank 1)
[1671] = { parent = 72 }, -- Shield Bash (Rank 2)
[1672] = { parent = 72 }, -- Shield Bash (Rank 3)
[29704] = { parent = 72 }, -- Shield Bash (Rank 4)

[100] = { duration = 15, class = "WARRIOR" }, -- Charge (Rank 1)
[6178] = { parent = 100 }, -- Charge (Rank 2)
[11578] = { parent = 100 }, -- Charge (Rank 3)
Expand Down Expand Up @@ -1683,6 +1678,10 @@ addon.Cooldowns = {

[6552] = { duration = 10, class = "WARRIOR", default = true }, -- Pummel (Rank 1)
[6554] = { parent = 6552 }, -- Pummel (Rank 2)
[72] = { parent = 6552, duration = 12 }, -- Shield Bash (Rank 1)
[1671] = { parent = 6552, duration = 12 }, -- Shield Bash (Rank 2)
[1672] = { parent = 6552, duration = 12 }, -- Shield Bash (Rank 3)
[29704] = { parent = 6552, duration = 12 }, -- Shield Bash (Rank 4)

[6572] = { duration = 5, class = "WARRIOR" }, -- Revenge (Rank 1)
[6574] = { parent = 6572 }, -- Revenge (Rank 2)
Expand Down

0 comments on commit 3b09a90

Please sign in to comment.