Skip to content

Commit

Permalink
fix(Windwalker): Fix EvaluateTargetIfJadefireStomp
Browse files Browse the repository at this point in the history
  • Loading branch information
Cilraaz committed Mar 6, 2024
1 parent e0db719 commit 3dea216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HeroRotation_Monk/Windwalker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ end
local function EvaluateTargetIfJadefireStomp(TargetUnit)
-- if=combo_strike&talent.jadefire_harmony&debuff.jadefire_brand_damage.remains<1
-- Note: combo_strike&talent.jadefire_harmony handled prior to this function
return TargetUnit:DebuffRemains(S.JadefireBrandDebuff)
return TargetUnit:DebuffRemains(S.JadefireBrandDebuff) < 1
end

local function EvaluateTargetIfRSK(TargetUnit)
Expand Down

0 comments on commit 3dea216

Please sign in to comment.