Skip to content

Commit

Permalink
Fix #3969
Browse files Browse the repository at this point in the history
  • Loading branch information
Hekili committed Oct 24, 2024
1 parent fdac587 commit 7d40f85
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion TheWarWithin/WarriorFury.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,13 @@ spec:RegisterAbilities( {

talent = "bloodthirst",
texture = 136012,
nobuff = "reckless_abandon_bloodbath",
nobuff = function()
if talent.unhinged.enabled then
if buff.bladestorm.up then return "bladestorm" end
if buff.ravager.up then return "ravager" end
end
return "reckless_abandon_bloodbath"
end,
startsCombat = true,
bind = "bloodbath",

Expand Down

0 comments on commit 7d40f85

Please sign in to comment.