Skip to content

Commit

Permalink
Fix #2788 (Gladiator's Badge issue).
Browse files Browse the repository at this point in the history
  • Loading branch information
Hekili committed Sep 10, 2023
1 parent 37107cf commit 1a7714a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dragonflight/MageFire.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ spec:RegisterVariable( "time_to_combustion", function ()
val = max( val, ( buff.sun_kings_blessing.max_stack - buff.sun_kings_blessing.stack ) * ( 3 * gcd.max ) )
end

if equipped.gladiators_badge and cooldown.gladiators_badge.remains - 20 < variable.time_to_combustion then
if equipped.gladiators_badge and cooldown.gladiators_badge.remains - 20 < val then
val = max( val, cooldown.gladiators_badge.remains )
end

Expand Down

0 comments on commit 1a7714a

Please sign in to comment.