Skip to content

Commit

Permalink
Merge pull request #1205 from sanguinerarogue/RogueSets
Browse files Browse the repository at this point in the history
fixed typo in evasion
  • Loading branch information
sanguinerarogue authored Jan 3, 2025
2 parents 53b9fdc + 5ecaf4d commit c03724a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sim/rogue/evasion.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (rogue *Rogue) RegisterEvasionSpell() {
DefaultCast: core.Cast{},
CD: core.Cooldown{
Timer: rogue.NewTimer(),
Duration: []time.Duration{time.Minute * 5, time.Minute*5 - time.Second*45, time.Second*5 - time.Second*90}[rogue.Talents.Elusiveness],
Duration: []time.Duration{time.Minute * 5, time.Minute*5 - time.Second*45, time.Minute*5 - time.Second*90}[rogue.Talents.Endurance],
},
IgnoreHaste: true,
},
Expand Down

0 comments on commit c03724a

Please sign in to comment.