diff --git a/sim/druid/forms.go b/sim/druid/forms.go index 830d06373..84b128e74 100644 --- a/sim/druid/forms.go +++ b/sim/druid/forms.go @@ -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, }) @@ -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) { @@ -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) - } } }, })