Skip to content

Commit

Permalink
Duplicate Avenging Wrath's auto-crit buff name -> "avenging_wrath_cri…
Browse files Browse the repository at this point in the history
…t" (used internally).
  • Loading branch information
Hekili committed Mar 15, 2020
1 parent dd10202 commit f38543e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Classes/PaladinRetribution.lua
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ if UnitClassBase( 'player' ) == 'PALADIN' then
avenging_wrath_autocrit = {
id = 294027,
duration = 20,
max_stack = 1
max_stack = 1,
copy = "avenging_wrath_crit"
},

blade_of_wrath = {
Expand Down Expand Up @@ -909,7 +910,7 @@ if UnitClassBase( 'player' ) == 'PALADIN' then
startsCombat = true,
texture = 236264,

usable = function () return incoming_damage_3s > 0.2 * health.max end,
usable = function () return incoming_damage_3s > 0.2 * health.max, "incoming damage over 3s is less than 20% of max health" end,
handler = function ()
applyBuff( 'shield_of_vengeance' )
end,
Expand Down

0 comments on commit f38543e

Please sign in to comment.