Skip to content

Commit

Permalink
[Mage] adjust Frost Storm target
Browse files Browse the repository at this point in the history
As of 9.2.0.42174, Frost Storm now hits the target of the spell that triggered the proc instead of the player's target.
  • Loading branch information
Dorovon committed Feb 4, 2022
1 parent 3d89771 commit a5a88d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/class_modules/sc_mage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1652,7 +1652,7 @@ struct mage_spell_t : public spell_t
&& rng().roll( p()->sets->set( MAGE_FROST, T28, B2 )->proc_chance() ) )
{
p()->cooldowns.frost_storm->start( p()->sets->set( MAGE_FROST, T28, B2 )->internal_cooldown() );
p()->action.frost_storm_comet_storm->execute_on_target( p()->target );
p()->action.frost_storm_comet_storm->execute_on_target( s->target );
}
}

Expand Down

0 comments on commit a5a88d9

Please sign in to comment.