Skip to content

Commit

Permalink
Merge pull request #1095 from Adamrch/pallyMinorFixes
Browse files Browse the repository at this point in the history
remove double judge and fix HoW hit
  • Loading branch information
kayla-glick authored Sep 25, 2024
2 parents d5c39e4 + 122de92 commit 88010bb
Show file tree
Hide file tree
Showing 4 changed files with 213 additions and 211 deletions.
2 changes: 2 additions & 0 deletions sim/paladin/hammer_of_wrath.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ func (paladin *Paladin) registerHammerOfWrath() {
DefenseType: core.DefenseTypeRanged,
ProcMask: core.ProcMaskRangedSpecial, // TODO to be tested
Flags: core.SpellFlagMeleeMetrics | core.SpellFlagAPL,
CastType: proto.CastType_CastTypeRanged,

Rank: i + 1,
RequiredLevel: int(rank.level),
Expand All @@ -59,6 +60,7 @@ func (paladin *Paladin) registerHammerOfWrath() {
DamageMultiplier: 1,
ThreatMultiplier: 1,
BonusCoefficient: 0.429,
BonusHitRating: -float64(paladin.Talents.Precision) * core.MeleeHitRatingPerHitChance,

ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool {
return sim.IsExecutePhase20()
Expand Down
2 changes: 1 addition & 1 deletion sim/paladin/paladin.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func (paladin *Paladin) Initialize() {
paladin.registerBlessingOfSanctuary()
paladin.registerLayOnHands()

paladin.enableMultiJudge = true // change this to baseline false when P5 launches
paladin.enableMultiJudge = false // Was previously true in Phase 4 but disabled in Phase 5
paladin.lingerDuration = time.Millisecond * 400
paladin.consumeSealsOnJudge = true

Expand Down
Loading

0 comments on commit 88010bb

Please sign in to comment.