Skip to content

Commit

Permalink
fix devastation AOE rotation
Browse files Browse the repository at this point in the history
  • Loading branch information
codengine committed Nov 18, 2022
1 parent fa3c59a commit e434884
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MaxDps_Evoker.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Title: MaxDps_Evoker
## Version: 10.0.2
## Version: 10.0.3
## Author: Kaminaris, Skynet
## Interface: 100002
## Dependencies: MaxDps
Expand Down
2 changes: 1 addition & 1 deletion Specialization/Devastation.lua
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function Evoker:DevastationAoe()

if talents[DV.ChargedBlast] then
if not buff[DV.Dragonrage].up or targets < 3 then
if (targets == 2 and buff[DV.ChargedBlastBuff] == 20) or (targets == 3 and buff[DV.ChargedBlastBuff] >= 10) or targets >= 4 then
if (targets == 2 and buff[DV.ChargedBlastBuff].count == 20) or (targets == 3 and buff[DV.ChargedBlastBuff].count >= 10) or targets >= 4 then
essenceSpender = DV.Pyre
else
essenceSpender = DV.Disintegrate
Expand Down

0 comments on commit e434884

Please sign in to comment.