Skip to content

Commit

Permalink
languish should not proc idol (#4017)
Browse files Browse the repository at this point in the history
  • Loading branch information
lime-green authored Nov 7, 2023
1 parent efa2ddd commit fe2066d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions sim/druid/items.go
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,10 @@ func init() {
core.MakePermanent(druid.RegisterAura(core.Aura{
Label: "Idol of the Lunar Eclipse",
OnPeriodicDamageDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) {
if !druid.Moonfire.IsEqual(spell) && !druid.InsectSwarm.IsEqual(spell) {
return
}

procAura.Activate(sim)
procAura.AddStack(sim)
},
Expand Down
4 changes: 2 additions & 2 deletions sim/druid/tank/TestFeralTank.results
Original file line number Diff line number Diff line change
Expand Up @@ -505,8 +505,8 @@ dps_results: {
dps_results: {
key: "TestFeralTank-AllItems-IdoloftheLunarEclipse-50457"
value: {
dps: 2491.833
tps: 5270.8334
dps: 2463.33463
tps: 5206.05682
dtps: 6.66421
}
}
Expand Down

0 comments on commit fe2066d

Please sign in to comment.