Skip to content

Commit

Permalink
Update forms.go
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick authored Dec 23, 2024
1 parent 5eea4cb commit f106e4b
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions sim/druid/forms.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,6 @@ func (druid *Druid) GetDynamicPredStrikeStats() stats.Stats {
func (druid *Druid) registerCatFormSpell() {
actionID := core.ActionID{SpellID: 768}

srm := druid.getSavageRoarMultiplier()

statBonus := druid.GetFormShiftStats().Add(stats.Stats{
stats.AttackPower: float64(druid.Level) * 2,
})
Expand Down Expand Up @@ -137,15 +135,6 @@ func (druid *Druid) registerCatFormSpell() {
druid.AutoAttacks.EnableAutoSwing(sim)
druid.manageCooldownsEnabled()
druid.UpdateManaRegenRates()

// These buffs stay up, but corresponding changes don't
if druid.SavageRoarAura.IsActive() {
druid.PseudoStats.SchoolDamageDealtMultiplier[stats.SchoolIndexPhysical] *= srm
}

if druid.PredatoryInstinctsAura != nil {
druid.PredatoryInstinctsAura.Activate(sim)
}
}
},
OnExpire: func(aura *core.Aura, sim *core.Simulation) {
Expand Down Expand Up @@ -175,15 +164,6 @@ func (druid *Druid) registerCatFormSpell() {
druid.UpdateManaRegenRates()

//druid.TigersFuryAura.Deactivate(sim)

// These buffs stay up, but corresponding changes don't
if druid.SavageRoarAura.IsActive() {
druid.PseudoStats.SchoolDamageDealtMultiplier[stats.SchoolIndexPhysical] /= srm
}

if druid.PredatoryInstinctsAura != nil {
druid.PredatoryInstinctsAura.Deactivate(sim)
}
}
},
})
Expand Down

0 comments on commit f106e4b

Please sign in to comment.