Skip to content

Commit

Permalink
fix(Feral): Update ComputeRakePMultiplier()
Browse files Browse the repository at this point in the history
  • Loading branch information
Cilraaz committed Dec 16, 2024
1 parent c1834ac commit 1a3aba6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions HeroRotation_Druid/Feral.lua
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,10 @@ S.AdaptiveSwarm:RegisterInFlight()

--- ===== PMultiplier Registrations =====
local function ComputeRakePMultiplier()
return Player:StealthUp(true, true) and 1.6 or 1
return (Player:StealthUp(true, true) or S.Prowl:TimeSinceLastRemovedOnPlayer() < 1) and 1.6 or 1
end
S.Rake:RegisterPMultiplier(S.RakeDebuff, ComputeRakePMultiplier)


local function ComputeRipPMultiplier()
local Mult = 1
Mult = Player:BuffUp(S.BloodtalonsBuff) and Mult * 1.25 or Mult
Expand Down

0 comments on commit 1a3aba6

Please sign in to comment.