Skip to content

Commit 9c00ea6

Browse files
authored
Merge pull request #1041 from Polynomix/mop
[ELEM] Fix 2pt15 elem
2 parents b9603cb + 6b6343d commit 9c00ea6

3 files changed

Lines changed: 11 additions & 9 deletions

File tree

sim/shaman/elemental/TestElemental.results

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1685,8 +1685,8 @@ dps_results: {
16851685
dps_results: {
16861686
key: "TestElemental-AllItems-RegaliaoftheWitchDoctor"
16871687
value: {
1688-
dps: 142076.38857
1689-
tps: 103856.39022
1688+
dps: 143980.26287
1689+
tps: 105760.26452
16901690
}
16911691
}
16921692
dps_results: {

sim/shaman/enhancement/TestEnhancement.results

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1692,8 +1692,8 @@ dps_results: {
16921692
dps_results: {
16931693
key: "TestEnhancement-AllItems-RegaliaoftheWitchDoctor"
16941694
value: {
1695-
dps: 93098.64299
1696-
tps: 79311.08274
1695+
dps: 93796.45509
1696+
tps: 80008.89485
16971697
}
16981698
}
16991699
dps_results: {

sim/shaman/items_mop.go

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,13 @@ var ItemSetRegaliaOfTheWitchDoctor = core.NewItemSet(core.ItemSet{
4040
shaman := agent.(ShamanAgent).GetShaman()
4141

4242
lightningStrike := shaman.RegisterSpell(core.SpellConfig{
43-
ActionID: core.ActionID{SpellID: 138146},
44-
SpellSchool: core.SpellSchoolNature,
45-
ProcMask: core.ProcMaskSpellProc,
46-
CritMultiplier: shaman.DefaultCritMultiplier(),
47-
MissileSpeed: 20,
43+
ActionID: core.ActionID{SpellID: 138146},
44+
SpellSchool: core.SpellSchoolNature,
45+
ProcMask: core.ProcMaskSpellProc,
46+
CritMultiplier: shaman.DefaultCritMultiplier(),
47+
MissileSpeed: 20,
48+
DamageMultiplier: 1,
49+
ThreatMultiplier: 1,
4850
ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) {
4951
baseDamage := sim.RollWithLabel(32375, 37625, "Lighting Strike 2pT14")
5052
nTargets := shaman.Env.ActiveTargetCount()

0 commit comments

Comments
 (0)