Skip to content

Commit

Permalink
feral: hardcode bite/rip combos
Browse files Browse the repository at this point in the history
 - avoids odd issue of those being cleared, but unable to configure in ui

Signed-off-by: jarves <jarveson@gmail.com>
  • Loading branch information
jarveson committed Oct 16, 2023
1 parent c8a89ad commit 30823c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sim/druid/feral/rotation.go
Original file line number Diff line number Diff line change
Expand Up @@ -764,11 +764,11 @@ func (cat *FeralDruid) setupRotation(rotation *proto.FeralDruid_Rotation) {
RotationType: rotation.RotationType,
BearweaveType: rotation.BearWeaveType,
MaintainFaerieFire: rotation.MaintainFaerieFire,
MinCombosForRip: core.Ternary(rotation.MinCombosForRip > 0, rotation.MinCombosForRip, 1),
MinCombosForRip: 5,
UseRake: rotation.UseRake,
UseBite: rotation.UseBite,
BiteTime: time.Duration(float64(rotation.BiteTime) * float64(time.Second)),
MinCombosForBite: core.Ternary(rotation.MinCombosForBite > 0, rotation.MinCombosForBite, 1),
MinCombosForBite: 5,
MangleSpam: rotation.MangleSpam,
BerserkBiteThresh: float64(rotation.BerserkBiteThresh),
BerserkFfThresh: float64(rotation.BerserkFfThresh),
Expand Down

0 comments on commit 30823c4

Please sign in to comment.