From f106e4bcfbcbddeee762c81c976080da04818ec6 Mon Sep 17 00:00:00 2001 From: Kayla Glick <12898988+kayla-glick@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:18:02 -0500 Subject: [PATCH] Update forms.go --- sim/druid/forms.go | 20 -------------------- 1 file changed, 20 deletions(-) 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) - } } }, })