Skip to content

Commit

Permalink
fix(Arcane): Fix rotation getting stuck on Nether Tempest
Browse files Browse the repository at this point in the history
  • Loading branch information
Cilraaz committed May 30, 2024
1 parent f2ea2e7 commit a30b378
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HeroRotation_Mage/Arcane.lua
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ local function Precombat()
-- conjure_mana_gem
-- TODO: Fix hotkey issue (spell and item use the same icon)
if S.ConjureManaGem:IsCastable() then
if Cast(S.ConjureManaGem) then return "conjure_mana_gem precombat 4"; end
if HR.CastAnnotated(S.ConjureManaGem, false, "CREATE GEM") then return "conjure_mana_gem precombat 4"; end
end
-- variable,name=aoe_target_count,op=reset,default=3
-- variable,name=aoe_target_count,op=set,value=9,if=!talent.arcing_cleave
Expand Down Expand Up @@ -200,7 +200,7 @@ local function AoeCooldownPhase()
if Cast(S.ArcaneOrb, nil, nil, not Target:IsInRange(40)) then return "arcane_orb aoe_cooldown_phase 6"; end
end
-- nether_tempest,if=talent.arcane_echo,line_cd=30
if S.NetherTempest:IsReady() and (S.ArcaneEcho:IsAvailable()) then
if S.NetherTempest:IsReady() and S.NetherTempest:TimeSinceLastCast() >= 30 and (S.ArcaneEcho:IsAvailable()) then
if Cast(S.NetherTempest, nil, nil, not Target:IsSpellInRange(S.NetherTempest)) then return "nether_tempest aoe_cooldown_phase 8"; end
end
-- arcane_surge
Expand Down

0 comments on commit a30b378

Please sign in to comment.