File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -5653,10 +5653,13 @@ struct icy_veins_t final : public frost_mage_spell_t
5653
5653
if ( p()->pets.water_elemental->is_sleeping() )
5654
5654
p()->pets.water_elemental->summon();
5655
5655
5656
- if ( p()->action.frostbolt_volley && !sim->target_non_sleeping_list.empty() )
5657
- p()->action.frostbolt_volley->execute_on_target( rng().range( sim->target_non_sleeping_list ) );
5658
- // TODO: What happens when Extended Bankroll refreshes?
5659
- p()->buffs.extended_bankroll->trigger();
5656
+ if ( p()->action.frostbolt_volley )
5657
+ {
5658
+ if ( !sim->target_non_sleeping_list.empty() )
5659
+ p()->action.frostbolt_volley->execute_on_target( rng().range( sim->target_non_sleeping_list ) );
5660
+ // TODO: What happens when Extended Bankroll refreshes?
5661
+ p()->buffs.extended_bankroll->trigger();
5662
+ }
5660
5663
}
5661
5664
};
5662
5665
You can’t perform that action at this time.
0 commit comments