Skip to content

Commit

Permalink
Merge pull request #1240 from TheBackstabi/master
Browse files Browse the repository at this point in the history
[Rogue] Fix auto EP selection for Combat
  • Loading branch information
TheBackstabi authored Dec 2, 2024
2 parents e204321 + 5fdd72f commit 6fd6aaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/rogue/combat/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ const getActiveEPWeight = (player: Player<Spec.SpecCombatRogue>, sim: Sim): Stat
avgIlvl /= playerGear.asArray().length;
if (mhWepId == 78472 || mhWepId == 77188 || mhWepId == 78481) { // No'Kaled MH
return Presets.CBAT_NOKALED_EP_PRESET.epWeights;
} else if (playerGear.getItemSetCount("Vestments of the Dark Phoenix") == 4) {
} else if (playerGear.getItemSetCount("Vestments of the Dark Phoenix") >= 4) {
return Presets.CBAT_4PT12_EP_PRESET.epWeights;
} else if (playerGear.getItemSetCount("Blackfang Battleweave") || avgIlvl >= 380) { // T13, or high enough that Haste+Mastery overtake Spell Hit Cap
} else if (playerGear.getItemSetCount("Blackfang Battleweave") || avgIlvl >= 400) { // T13, or high enough that Haste+Mastery overtake Spell Hit Cap
return Presets.CBAT_T13_EP_PRESET.epWeights;
} else {
return Presets.CBAT_STANDARD_EP_PRESET.epWeights;
Expand Down

0 comments on commit 6fd6aaa

Please sign in to comment.