Skip to content

Commit

Permalink
fix(Feral): Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Cilraaz committed Mar 11, 2024
1 parent 04f5b97 commit 701042e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HeroRotation_Druid/Feral.lua
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ end

local function EvaluateTargetIfFilterRakeAoEBuilder(TargetUnit)
-- target_if=max:(dot.rake.pmultiplier<1.6|dot.rake.refreshable)*druid.rake.ticks_gained_on_refresh
return (num(TargetUnit:PMultiplier(S.Rake) < 1.6 or TargetUnit.DebuffRefreshable(S.RakeDebuff)) * TicksGainedOnRefresh(S.RakeDebuff, TargetUnit))
return (num(TargetUnit:PMultiplier(S.Rake) < 1.6 or TargetUnit:DebuffRefreshable(S.RakeDebuff)) * TicksGainedOnRefresh(S.RakeDebuff, TargetUnit))
end

local function EvaluateTargetIfFilterRakeAoEBuilder2(TargetUnit)
Expand Down

0 comments on commit 701042e

Please sign in to comment.