Skip to content

Commit

Permalink
fix fire ele crash, still use for APL
Browse files Browse the repository at this point in the history
  • Loading branch information
lime-green committed Oct 18, 2023
1 parent c0d2004 commit 7ff4409
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion sim/shaman/fire_elemental_totem.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ func (shaman *Shaman) registerFireElementalTotem() {
Spell: shaman.FireElementalTotem,
Type: core.CooldownTypeUnknown,
ShouldActivate: func(sim *core.Simulation, character *core.Character) bool {

success := false
if enhTier10Aura != nil && shaman.Totems.EnhTierTenBonus {
if enhTier10Aura.IsActive() {
Expand Down
2 changes: 1 addition & 1 deletion sim/shaman/shaman.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ func (shaman *Shaman) Initialize() {

shaman.registerBloodlustCD()

if shaman.Totems.UseFireElemental && enableSnapshot && !shaman.IsUsingAPL {
if shaman.Totems.UseFireElemental && enableSnapshot {
shaman.fireElementalSnapShot = core.NewSnapshotManager(shaman.GetCharacter())
shaman.setupProcTrackers()
}
Expand Down

0 comments on commit 7ff4409

Please sign in to comment.