Skip to content

Commit

Permalink
Merge pull request #2652 from wowsims/balance-t84p
Browse files Browse the repository at this point in the history
Correction of the last elune's wrath usage adjustment
  • Loading branch information
Gashiraa authored Feb 12, 2023
2 parents 6955a9f + 8f1c700 commit 80b9ab1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sim/druid/balance/TestBalance.results
Original file line number Diff line number Diff line change
Expand Up @@ -579,8 +579,8 @@ dps_results: {
dps_results: {
key: "TestBalance-AllItems-NightsongGarb"
value: {
dps: 6743.89982
tps: 6585.47563
dps: 6730.02746
tps: 6571.68352
}
}
dps_results: {
Expand Down
2 changes: 1 addition & 1 deletion sim/druid/balance/rotation.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (moonkin *BalanceDruid) rotation(sim *core.Simulation) *core.Spell {
if rotation.UseWrath {
if moonkin.MoonkinT84PCAura.IsActive() &&
(moonkin.LunarICD.TimeToReady(sim)+playerLatency > moonkin.MoonkinT84PCAura.RemainingDuration(sim) ||
moonkin.MoonkinT84PCAura.RemainingDuration(sim) > solarUptime) {
moonkin.MoonkinT84PCAura.RemainingDuration(sim) < solarUptime) {
return moonkin.Starfire
}
if (rotation.UseSmartCooldowns && solarUptime > 10*time.Second) || sim.GetRemainingDuration() < 15*time.Second {
Expand Down

0 comments on commit 80b9ab1

Please sign in to comment.