Skip to content

Commit

Permalink
fix wf weapon phantom procs and enable stopattack on wf totem
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamrch committed Sep 22, 2024
1 parent 561622b commit 909ff64
Show file tree
Hide file tree
Showing 13 changed files with 873 additions and 872 deletions.
3 changes: 2 additions & 1 deletion sim/core/buffs.go
Original file line number Diff line number Diff line change
Expand Up @@ -2292,7 +2292,8 @@ func ApplyWindfury(character *Character) *Aura {
} else {
windfuryBuffAura.SetStacks(sim, 2)
}
aura.Unit.AutoAttacks.ExtraMHAttack(sim, 1, ActionID{SpellID: 10610}, spell.ActionID)

aura.Unit.AutoAttacks.ExtraMHAttackProc(sim, 1, ActionID{SpellID: spellId}, spell)
}
},
}))
Expand Down
2 changes: 1 addition & 1 deletion sim/core/consumes.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ func DragonBreathChiliAura(character *Character) *Aura {
ActionID: ActionID{SpellID: 15851},
SpellSchool: SpellSchoolFire,
DefenseType: DefenseTypeMagic,
ProcMask: ProcMaskSpellDamage,
ProcMask: ProcMaskSpellDamageProc | ProcMaskSpellProc,
Flags: SpellFlagNoOnCastComplete | SpellFlagPassiveSpell,

DamageMultiplier: 1,
Expand Down
Loading

0 comments on commit 909ff64

Please sign in to comment.