Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sim/core/spell_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ const (
// Uses FloatValue
SpellMod_CritDamageBonus_Flat

// Will reduce spell.DefaultCast.Cost by % amount. -5% = -0.05
// Will reduce spell.DefaultCast.Cost by % amount. -5% = -5
// Uses IntValue
SpellMod_PowerCost_Pct

Expand Down
2 changes: 1 addition & 1 deletion sim/hunter/arcane_shot.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (hunter *Hunter) getArcaneShotConfig(rank int, timer *core.Timer) core.Spel
IgnoreHaste: true,
CD: core.Cooldown{
Timer: timer,
Duration: time.Second*6 - time.Millisecond*200*time.Duration(hunter.Talents.ImprovedArcaneShot),
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved to talents.go

Duration: time.Second * 6,
},
},

Expand Down
Loading
Loading